active questions tagged pki - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:25:41Z http://stackoverflow.com/feeds/tag/pki http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1905216/whats-a-good-strategy-for-allowing-external-users-of-my-app-to-upload-a-pki-cert 0 What's a good strategy for allowing external users of my app to upload a PKI cert in JEE? Kevin Pauli 2009-12-15T04:45:41Z 2009-12-15T05:07:44Z <p>We've built a JEE app in JBoss that exposes web services to external consumers. We want to secure these services. We have a registration process that requires the consumers to upload their public key so that we can add it to our truststore. However it is currently a manual process of using the keytool from the command line to add them to the truststore.</p> <p>This whole setup seems rather primitive. I don't like the idea of a truststore on the filesystem that is not part of the database. There must be an approach that lets you utilize the database to store the certs. Should I put the certs in a blob column, and roll my own TrustManager that pulls the public key out of the db and verifies the signature? Or is there some other generally implemented open-source solution to this problem?</p> http://stackoverflow.com/questions/669163/why-do-we-need-the-pfx-key-exchange-file 0 why do we need the pfx (key exchange) file? George2 2009-03-21T11:42:00Z 2009-12-09T21:11:11Z <p>Hello everyone,</p> <p>If we make the private key exportable (using -pe option in makecert), then in theory we have both an exportable private key and the public key (public key in certificate) -- which can be transferred or imported to another machine.</p> <p>So, my question is, why do we still need to create the .pfx file (key exchange file, which contains private and public keys) -- making the private key exportable in certificate could do anything we want? Any scenarios pfx file could cover which making private key exportable in certificate could not achieve?</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/419563/what-does-wsseinvalidsecurity-mean 0 What does "wsse:InvalidSecurity" mean? Mark Hesketh 2009-01-07T08:25:37Z 2009-11-25T06:00:03Z <pre><code>An error was discovered processing the &lt;wsse:Security&gt; header </code></pre> <p>This is a WS-Security question btw... </p> <p>I can't see anything wrong with my WS endpoint (apart from the fact that it's running in a TIBCO BW engine!). Does someone have any 'prior' with this kind of error? I realise that the WS-Security Header could be broken anywhere presumably to get this error but, there's GOT to be a 90% percentile on some kind of common error.</p> <p>Here's the secured SOAP - the client is standalone java (WSS4J 1.5.0) performing signing only at this stage.</p> <pre><code>&lt;soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soapenv:Header&gt; &lt;wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" soapenv:mustUnderstand="1"&gt; &lt;ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#" Id="Signature-20237898"&gt; &lt;ds:SignedInfo&gt; &lt;ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/&gt; &lt;ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/&gt; &lt;ds:Reference URI="#id-18414151"&gt; &lt;ds:Transforms&gt; &lt;ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/&gt; &lt;/ds:Transforms&gt; &lt;ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/&gt; &lt;ds:DigestValue&gt;DvjhvAtEVxwntL/RjMCNhId57cg=&lt;/ds:DigestValue&gt; &lt;/ds:Reference&gt; &lt;/ds:SignedInfo&gt; &lt;ds:SignatureValue&gt; YbOB3FRduCr5rutpIvch9sDZfZToy3pjm+Kyl/Oqz6cAPqMVKqvKBb4P7ebnzP/3SVjm+PfLqlE5 BGgcT3Vz93apyg+eY1rAIYUs7K1Zt9F5ejMmij6HQpQTGpyM9BUXJi1x5bt9GuMtD0SK939bIIE2 ZUyZ0jPJp/wUhMonskw= &lt;/ds:SignatureValue&gt; &lt;ds:KeyInfo Id="KeyId-15734641"&gt; &lt;wsse:SecurityTokenReference xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="STRId-3852606"&gt; &lt;ds:X509Data&gt; &lt;ds:X509IssuerSerial&gt; &lt;ds:X509IssuerName&gt;CN=Mark Hesketh,OU=asdf,O=DVA,L=Canberra,ST=ACT,C=AU&lt;/ds:X509IssuerName&gt; &lt;ds:X509SerialNumber&gt;1231310305&lt;/ds:X509SerialNumber&gt; &lt;/ds:X509IssuerSerial&gt; &lt;/ds:X509Data&gt; &lt;/wsse:SecurityTokenReference&gt; &lt;/ds:KeyInfo&gt; &lt;/ds:Signature&gt; &lt;/wsse:Security&gt; &lt;/soapenv:Header&gt; &lt;soapenv:Body xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="id-18414151"&gt; &lt;message xmlns="http://www.tibco.com/schemas/CertificateWork/Resources/Schema.xsd" text="Sample msg with SHA1 signature"/&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> http://stackoverflow.com/questions/1403837/setting-certificate-friendly-name 1 Setting Certificate Friendly Name Mark Sutton 2009-09-10T07:32:38Z 2009-11-18T10:45:54Z <p>Im trying to set the certificate friendly name during the certificate request/acceptance process. I understand that this a property of the microsoft store rather than the certificate and an wondering what .net/c# technique might be used to set it.</p> http://stackoverflow.com/questions/1737949/creating-openvpn-keys-and-cert-using-ruby-how 0 Creating OpenVPN Keys and Cert using ruby - how adam 2009-11-15T16:10:19Z 2009-11-15T16:10:19Z <p>Id like to be able to create client keys for an openvpn setup from within a ruby script. Im wondering how to go about this. </p> <p>Im assuming i coudl create my own CA and key generation code in ruby. Or i could somehow just call the easy-rsa scripts (non-ruby) from within my ruby script and somehow simulate the keyboard when easy-rsa prompts for client details.</p> <p>Experience in either scenario is limited so was hoping someone could pass some tips,links,code. </p> http://stackoverflow.com/questions/270333/how-to-generate-an-ssl-client-certificate-from-a-disconnected-network 0 How to generate an SSL client certificate from a disconnected network? spoulson 2008-11-06T21:22:43Z 2009-10-12T14:10:21Z <p>I have a unique situation where I need to implement client certificate authentication over HTTPS between IE browser and IIS 6. The browser and IIS are separated by a firewall that only allows the browser to connect to IIS on the SSL port.</p> <p>We have an internal certificate server on the same network as IIS. I've generated an SSL server cert for IIS and that is installed. I configured IIS to only allow SSL, require client certificates.</p> <p>The limitation here is the browser machine is on a disconnected network, so I can't go to the CA's <a href="http://caserver/CertSrv" rel="nofollow">http://caserver/CertSrv</a> URL and <a href="http://www.windowsecurity.com/articles/Client-Certificate-Authentication-IIS6.html" rel="nofollow">request a client cert</a> like you normally would.</p> <p>I figured if there were a way that I could generate a CSR against the Root CA's public key, I can copy it to the CA server to generate the client cert. But, there appears to be no provision in IE or the Certificates MMC to do this. The Certificates MMC seems to require a direct connection to the CA.</p> <p>Has anyone solved this before?</p> <p>FYI, All servers referenced run Windows Server 2003.</p> <p><strong>Update:</strong> Thanks to Jonas Oberschweiber and Mark Sutton for pointing out the CertReq.exe command line tool. Using this, I've generated a CSR, and consequently a client certificate that installs successfully. However, IE is apparently not sending this client cert when accessing the IIS server in question; it still generates a 403.7 "Forbidden: SSL client certificate is required." I suspect that the reason is that the Subject field of the client cert does not match the user id of the account running IE, thus perhaps not sending a mismatching client cert. The Subject matches that of the user I used to submit the CSR and generate the client cert on the other end of the firewall.</p> <p>Does the Subject field matter? Is there something else I need to do to enable IE to send this cert?</p> http://stackoverflow.com/questions/1176853/c-export-cert-in-pfx-format 0 C# Export cert in pfx format Mark Sutton 2009-07-24T10:33:56Z 2009-10-01T15:08:28Z <p>Hi im trying to use .Net and c# to export a certificate from the cert store into a PFX file. I'm trying to use the X509certificate2.export method wiht the X509ContentType.Pfx flag set, but am unsure how to handle the returned byte array and output it correctly to file.</p> <p>Any help appreciated.</p> <p>Thanks Mark</p> http://stackoverflow.com/questions/1134565/python-accessing-web-service-protected-by-pki-ssl 0 Python accessing web service protected by PKI/SSL Eugene 2009-07-15T23:00:04Z 2009-09-17T23:16:52Z <p>I need to use Python to access data from a RESTful web service that requires certificate-based client authentication (PKI) over SSL/HTTPS. What is the recommended way of doing this?</p> http://stackoverflow.com/questions/611057/dod-common-access-card-cac-authentication 1 DOD Common Access Card (CAC) Authentication Jim 2009-03-04T15:24:43Z 2009-09-17T17:58:39Z <p>I have figured out all the necessary steps to get DOD CAC card based client certificate authentication working in Apache, but am now struggling to pull a good GUID for the user from the certificate I am receiving. Is there a GUID available on the certificate that will not change when the CAC card is renewed? I was thinking of using the SSL_CLIENT_S_DN which would look something like:</p> <p>/C=US/O=U.S. Government/OU=DoD/OU=PKI/OU=CONTRACTOR/CN=LAST_NAME.FIRST_NAME.MIDDLE_NAME.0123456789</p> <p>but I have heard that the number on the end changes when the CAC card is renewed. Is this true? Is there a better piece of information to use for a GUID? I'd also like to get the users email address, but I don’t see it available in the information I am receiving from the certificate. Is the email adress available in some custom extension that I am not seeing?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1006120/what-is-public-key-infrastucture 0 What is Public key infrastucture BALAMURUGAN 2009-06-17T10:03:33Z 2009-06-17T10:42:18Z <p>I need to know what is public key infastructure. I need to know is this related to sending requests and response as like WsHttpbinding in WCF.</p> http://stackoverflow.com/questions/578310/reading-private-keys-from-oracle-wallet 0 Reading private keys from oracle wallet sundar venugopal 2009-02-23T16:36:43Z 2009-05-24T17:37:24Z <p>We use Oracle wallet for scripting Oracle releases.</p> <p>Using mkstore I can add or delete private keys to Oracle wallet.</p> <p>Either using Java or C#, I want to read the private key sitting inside the Oracle wallet.</p> <p>Could someone share the sample code how to do that.</p> <p>This post explains how to open a wallet using Java, but it does not read the private key. <a href="http://blog.mikesidoti.com/2007/04/opening-oracles-wallet.html" rel="nofollow">http://blog.mikesidoti.com/2007/04/opening-oracles-wallet.html</a></p> http://stackoverflow.com/questions/885005/how-do-i-authenticate-a-user-with-the-smart-card-is-required-for-interactive-log 1 How do I authenticate a user with the "Smart card is required for interactive logon" set? Joshua 2009-05-19T21:01:15Z 2009-05-20T19:06:54Z <p><a href="http://support.microsoft.com/kb/892424" rel="nofollow">http://support.microsoft.com/kb/892424</a></p> <p>When the "Smart card is required for interactive logon" is set on Active Directory, it generates a random password. How do I utilize a smart card to authenticate a user over LDAP from a web application?</p> <p>How do I know who the user is? Is there a way to access the cert? Can I get it from the session?</p> http://stackoverflow.com/questions/650017/what-means-subject-in-certificate 0 what means subject in certificate? George2 2009-03-16T11:23:56Z 2009-04-03T15:28:00Z <p>Hi guys,</p> <p>The related link is this <a href="http://msdn.microsoft.com/en-us/library/bfsktky3%28VS.80%29.aspx" rel="nofollow">MSDN article</a>.</p> <p>I am always confused about the term "subject", for example, sk option "Specifies the subject's key container location", sr option "Specifies the subject's certificate store location". What exactly mean subject? The certificate owner? The certificate issuer (e.g. the root CA which issues the certificate)? Or something else? </p> <p>regards, George</p> http://stackoverflow.com/questions/657622/where-is-private-key 0 where is private key? George2 2009-03-18T10:01:34Z 2009-03-18T22:14:33Z <p>Hi guys,</p> <p>Two simple questions about makecert command,</p> <ol> <li>Suppose I am using the following command,</li> </ol> <p>makecert -n "CN=PowerShell Local Certificate Root" -a sha1 -eku 1.3.6.1.5.5.7.3.3 -r -sv root.pvk root.cer -ss Root -sr localMachine</p> <p>my confusion is, will private key automatically registered somewhere in cerficate manager or the private key will just be in file root.pvk?</p> <ol> <li>Suppose I am using the following command,</li> </ol> <p>makecert -r -pe -n "CN=XYZ Company" -ss my, my confusion is -- after executing this command, where is the private key stored (since I did not specify -pe option, the private key is not embedded in the certficate, but where it is)?</p> <p>regards, George</p> http://stackoverflow.com/questions/492323/what-type-of-x509-certificate-to-use-for-xml-signature 1 What type of X509 Certificate to use for XML Signature? froh42 2009-01-29T16:21:20Z 2009-02-06T08:00:18Z <p>I'm currently developing some software that uses XML Signing to transfer files securely between two machines. We're using X.509 certificates from our own CA as keys.</p> <p>The CA (Windows 2003 server) offers several types of certificates (Email Cert, Server Cert, ...)</p> <p>Which one of those would I need to generate for XML Signature? To my knowlede for signing a cert needs the "digital signing" extension, but how does that map to what Windows Server 2003 offers when filling out a certificte request?</p> <p>Also helpful would be some pointers to good documentation, google searches regarding x509 drown in white noise of articles concerning other topics around certificates.</p> http://stackoverflow.com/questions/426994/primer-for-x-509-certificates-on-windows 7 Primer for X.509 certificates on Windows icelava 2009-01-09T03:38:16Z 2009-01-13T20:11:24Z <p>I am presently studying the topic of encrypting and signing SOAP messages via WSE 3.0 or WCF. Since I have not participated in distributed application development involving the public Internet, I find my knowledge on X.509 ceritificates lacking and how it works in the Windows certificate store mechanism. It is not about asymmetric cryptography; it is about the PKI ecosystem.</p> <p>Therefore I would like to gather what are some articles or books that give comprehensive explanations on Windows' security mechanisms, how to properly use and manage the Certificate Store, CA trust chains, and how APIs like WSE or WCF may interact and make use of certificates. Recommendations?</p> http://stackoverflow.com/questions/415852/best-free-certificate-management-tools 1 Best (Free) Certificate management tools Mark Hesketh 2009-01-06T08:49:40Z 2009-01-12T23:12:51Z <p>I recently downloaded a neat java tool for managing certificate files - like PEM, PFX, etc.. From memory it was written in Java but, for the life of me i can't find it (cleared download list and non-obvious file name!). </p> <p>This led me to throw open the question - what free tools are there for managing certs? The aforementioned tool could generate certs as well as display them via it's UI.</p> <p>I just want something to track my certs and generally make it easier to view their details without having to use formal CA tooling or keytool/other cmd line tools JUST to see which certs i'm dealing with.</p> http://stackoverflow.com/questions/184265/what-system-do-you-use-to-encrypt-files-for-a-group-of-people-os-agnostic-prefer 2 What system do you use to encrypt files for a group of people (OS agnostic prefered)? Daren Thomas 2008-10-08T18:49:09Z 2008-12-20T09:06:39Z <p>Say you have a bunch of files. Say you can store meta data to these files. Say, one of these meta attributes were called "encryption" Say everyone was allowed to look at these files, but since they are encrypted, only people who know how to decrypt them can actually read the contents. Say, for every given value of "encryption", a group of people share the knowledge on how to decrypt files marked with that value. Say you want to be able to do this programmatically, in an OS agnostic way (if possible)</p> <p>What are the values you would use for "encryption"? How would you store the keys? How would you organize access to the keys?</p> <p>I am currently leaning towards following implementation:</p> <ul> <li>the value of the field "encryption" contains the name of a key, possibly also denoting the algorithm used</li> <li>each user has access to a bunch of keys. This could be defined by roles the user has in an LDAP/ActiveDirectory like structure, or they could just be files in a secure directory in the users profile/home directory.</li> <li>on viewing a file, the viewer (I'm trying to build a document management system) checks the users keys and decrypts the file if a matching key was found.</li> </ul> <p>What encryption would you use? Symmetric (AES)? Or Asymmetric (what are the good ones)?</p> <p>Using asymmetric keys would have the additional benefit of making a difference between reading a file and writing a file: Access to the private key is necessary for writing the file, access to the public key (only semi public, as only certain roles have access to it) would allow reading the file. Am I totally mistaken here?</p> <p>What are common systems to solve these problems used in small to medium sized businesses?</p> <p><strong>EDIT</strong>: It seems there are no universal sollutions. So, I will state the problem I am trying to solve a little more clearly:</p> <p>Imagine a Document Management System that operates in a distributed fashion: Each document is copied to various nodes in a (company controlled, private) P2P network. An algorithm for assuring redundancy of documents is used to ensure backups of all documents (including revisions). This system works as a service / daemon in the background and shovels documents to and fro.</p> <p>This means, that users will end up with documents probably not meant for them to see on their local workstation (a company controlled PC or a laptop or something - the setting is such that a SME IT guy sets this all up and controls who is part of the P2P network).</p> <p>This rules out directory access based schemes, as the user will probably be able to get to the data. Am I mistaken here? Could a local folder be encrypted such that it can only be accessed by a Domain user? How secure is that?</p> <p>I am aware of users sharing decrypted versions of files - and that that is hard to suppress technically. This is not a problem I am trying to solve.</p> http://stackoverflow.com/questions/320477/what-is-the-best-cross-browser-solution-for-browser-based-document-signing-w-di 2 What is the best cross-browser solution for browser based document signing (w/ digital signature)? ChrisTek 2008-11-26T12:01:18Z 2008-12-07T13:31:49Z <p>I need to implement a browser based component (most likely java applet since it needs to be cross-browser) that will allow us to digitally sign and verify data in the XadES format. What options are available and what is the best solution?</p> http://stackoverflow.com/questions/345892/whats-the-difference-between-class-1-and-class-3-roots-and-the-certificates-sig 1 What's the difference between class 1 and class 3 roots, and the certificates signed by them? Chris Charabaruk 2008-12-06T04:16:00Z 2008-12-06T04:26:34Z <p>Pretty much what the question says. What's the difference between the two classes of roots? The differences between the certificates signed by such roots? What uses would a class 1 signed certificate have that a class 3 doesn't, and vice versa?</p> http://stackoverflow.com/questions/267858/are-cas-allowed-to-modify-csrs-before-signing 0 Are CAs allowed to modify CSRs before signing? Ragesh 2008-11-06T07:30:11Z 2008-11-06T12:58:04Z <p>Can anyone please tell me if Certifying Authorities (CAs) are allowed to make modifications to the Certificate Signing Request (CSR) before actually signing the certificate with their own private key? </p> <p>Specifically, I'd like to know if it's valid for the CA to insert additional fields (such as EKUs) into the cert before adding their signature.</p> http://stackoverflow.com/questions/174149/storing-x509-certificates-in-db-yea-or-nay 1 Storing X509 certificates in DB - Yea or Nay? Gabriel 2008-10-06T12:59:05Z 2008-10-16T14:16:16Z <p>I find myself needing to store public key certificates, and a single private key certificate for an in-house application.</p> <p>A member of our team suggested storing the X509 certificates in the database, instead of storing it in the windows certificate store, as we have been doing up until now. I don't like re-inventing the wheel, but I have to at least consider the idea. it would mean keeping our data more centralized, which is good, I suppose.</p> <p>The initial barriers that I can see are:</p> <ul> <li>The private key still needs to be stored somewhere, and I don't know if shoehorning it into a 'public key' table is a good idea. I don't like the idea of setting up a table for a single element, either. Perhaps just keep the private key as a local file? (.pfx file, for instance).</li> <li>Revocation Lists. We would probably have to set up a process to deal with revoked public keys.</li> </ul> <p>I don't have a lot of experience with X509 certificates, so, my question is: Are there any other problems we are likely to encounter storing public key certificates in a database, instead of going with the windows certificate store?</p> <p>It's worth bearing in mind that this application is going to be rolled out onto several business clients servers, so keeping all the data in a single place will make for easier backups. Oh, and the in-house app in question is being developed with C#..</p> <p>Thanks!</p> http://stackoverflow.com/questions/208053/ms-ca-exit-module-code-or-tutorial 0 MS CA Exit Module Code or Tutorial Mark Sutton 2008-10-16T10:37:26Z 2008-10-16T12:12:53Z <p>Hi I'm struggling to find examples/explanations of coding a MS Certificate Authority exit module. If anybody has any help or resources they can point me at I'd be grateful.</p> <p>Thanks Mark</p> http://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption 3 What is the performance difference of pki to symmetric encryption? stevemac 2008-09-23T00:44:31Z 2008-09-23T22:13:06Z <p>We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant.</p> <p>I think that I know that PKI is much slower and more complex than symmetric encrpyption, but I can't find the numbers to back up my feelings.</p> http://stackoverflow.com/questions/120116/encryption-libraries 2 Encryption libraries? Gabriel 2008-09-23T09:50:10Z 2008-09-23T11:57:44Z <p>I have been tasked with implementing a PKI library in C# for a company project, and have been unable to find a good implementation of it. There appear to be multiple libraries, and many broken links pointing to MSDN libraries that have been removed. I've seen people using Crypt32.dll, people building their own libraries, people using P/Invoke to access system certificate stores, people extending the built-in libraries, examples that simply don't apply to C# (e.g. Java examples), and commercial libraries.</p> <p>My question is, which implementation/library is most recommended for simple encryption/decryption of data?</p> <p>As some background for what I plan to do with it, I simply need to encrypt messages using a private key (.pfx), and decrypt with public keys (.cer). Message signing and authentication isn't required at this level of the project, although it may be in future. I have seen reference to encryption lengths which make me uneasy. We need to be able to encrypt any length message (within reason, of course!). Is this something I need to worry about, and if so, is there a way to deal with it?</p> <p>I would prefer not to store public/private keys in the windows certificate manager if at all possible, but if it makes implementation significantly simpler, so be it.</p> <p>I realize PKI and encryption is a large and complex subject, but I'm hoping for a relatively simple library anyway... (one can hope, right?)</p> <p>Thanks!</p>