Tagged Questions
Public Key Infrastructure
10
votes
4answers
1k views
Primer for X.509 certificates on Windows
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 ...
9
votes
1answer
199 views
Should I accept an OSCP responder certificate signed by the trust anchor?
Could someone please help me on the following?
RFC2560 defines when an OCSP responder certificate (sigining the response) could be accepted:
1. Matches a local configuration of OCSP signing ...
9
votes
1answer
2k views
Is it possible to programmatically generate an X509 certificate using only C#?
We're trying to generate an X509 certificate (including the private key) programmatically using C# and the BouncyCastle library. We've tried using some of the code from this sample by Felix Kollmann ...
8
votes
3answers
780 views
RSA and prime-generator algorithms
OK, my understanding of the mathematical workings of RSA may not be as deep as it should, so feel free to slap me over the head if this is stupid:
To generate a private key, we need two random big ...
6
votes
4answers
374 views
PKI multiple public keys
I'm wondering if I can have multiple public keys for a private key.
Can this be done?
If so, what are the security issues!?
If I generate multiple key pairs based on the same initial values (with no ...
5
votes
4answers
234 views
Some understanding gaps about Public Key Infrastructure workflow
Recently, I have stumbled upon the basic understanding about PKI work-in-action process. I have looked at major articles about the principles but still I feel quite dumb to understand this process. I ...
5
votes
4answers
5k views
Mutual-authentication with web services
Currently, I've been successful implementing Mutual Authentication security so long as the client accesses the website using a web browser, because browsers take care of all the certificate exchange ...
5
votes
1answer
2k views
Adding a self-signed certificate to iphone Simulator?
I have a self-signed certificate at the endpoint of my API. I'm trying to test some things using the simulator but am getting "untrusted server certificate".
I have tried to use safari on the ...
5
votes
5answers
1k views
Serial Number of a X.509 Certificate
I am programming a Certification Authority in java for a uni class, now I don't know what's the best option for the serial number of the Certificate.
Simple static counter from 0 to veryBigNumber
...
4
votes
1answer
96 views
git verify trusted tags
I would like to include git tag -v command into the deployment process to catch unsigned tags or tags signed by a non-trusted GPG key.
The command returns with an exit code of 0 if the tag has a ...
4
votes
1answer
130 views
What is the use of the responderID in the OCSP response?
I am not clear on the use of the responder ID in the definition of the OCSP response.
I am doing OCSP checks via Java's PKIX APIs.
Using a third party library I get (during the OCSP response ...
4
votes
2answers
236 views
Which parts of the client certificate to use when uniquely identifying users?
I'm designing a system where users will be able to register and afterward authenticate with client certificates in addition to username/password authentication.
The client certificates will have to ...
4
votes
2answers
4k views
PKCS12 Java Keystore from CA and User certificate in java
I've recently been put in charge of mocking up an Apple product (iPhone Configuration Utility) in Java. One of the sections I've been a bit stuck on is a part about Exchange ActiveSync. In there, it ...
4
votes
6answers
4k views
DOD Common Access Card (CAC) Authentication
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 ...
3
votes
3answers
219 views
PKCS#11 driver prompts for PIN for each key
I am using CardOS API driver from Siemens as PKCS#11 driver to load certificates from a PKI card as follows:
char[] pin = "123456".toCharArray();
KeyStore.PasswordProtection pp = new ...
3
votes
1answer
84 views
how to prove that someone's previous public key was really theirs?
I'm in the planning stage of an open-source credit clearing system, and my idea is to use GPG keys to sign IOUs. But I'm concerned that if Bob signs an IOU he emails to Alice, then later deletes his ...
3
votes
1answer
900 views
OpenSSL Version V3 with Subject Alternative Name
I'm using the OpenSSL command line tool to generate a self signed certificate. It seems to be working correctly except for two issues. I can't get it to create a .cer with a Subject Alternative Name ...
3
votes
3answers
5k views
Importing Thawte trial certificates into a Java keystore
I'm trying to configure a Tomcat server with SSL. I've generated a keypair thus:
$ keytool -genkeypair -alias tomcat -keyalg RSA -keystore keys
Next I generate a certificate signing request:
$ ...
3
votes
2answers
841 views
Storing X509 certificates in DB - Yea or Nay?
I find myself needing to store public key certificates, and a single private key certificate for an in-house application.
A member of our team suggested storing the X509 certificates in the database, ...
3
votes
2answers
2k views
Encryption libraries?
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 ...
3
votes
6answers
3k views
What is the performance difference of pki to symmetric encryption?
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.
I think that I know that PKI is much slower and more complex ...
2
votes
1answer
171 views
PHP and X.509 authentication - Checking certificate issuer
I'm trying to have a specific page on my site only accessible to people after X.509 authentication. Catch is, I want it to be available to all clients who have a matching certificate issued by a ...
2
votes
2answers
102 views
how to compare distinct implementations of java.security.cert.X509Certificate
I'm using bouncycastle org.bouncycastle.jce.provider.X509CertificateObject and sun.security.x509.X509CertImpl in different parts of my app, and sometimes I need to compare them for equality, equals() ...
2
votes
2answers
94 views
Python example to access a php site(HTTPS) protected by PKI
I am looking for a example code for how to implement a Python application to communicate with a php site over HTTPS and use PKI protection.
I probably will use pyOpenSSL and httplib.HTTPSConnection. ...
2
votes
1answer
340 views
OpenSSL generate and sign certificate with custom subject fields
I need to create and sign (I am CA) certificate with custom subject (, SERIALNUMBER=...,).
So far I have modified openssl config file so I am able to inclde custom fields in subject.
[ new_oids ]
...
2
votes
1answer
273 views
Signature and Exchange key types– what are they and when to use each ( Makecert -sky )?
-sky switch Specifies the subject's key type, which must be signature,
exchange, or an integer that
represents a provider type. By
default, you can pass 1 for an
exchange key and 2 for a ...
2
votes
1answer
325 views
What does “exporting private keys” mean ( Makecert -pe )?
By specifying a –pe switch ( using
Makecert utility ) we make a private
key exportable.
a) What is it meant by private key being exportable? That we can copy the created .pvk file ( ...
2
votes
3answers
932 views
How to create a PKI in Java
I want create certificates to be stored on a database and i dont have any idea about how to do it, if exits an API or library help me do it
Thanks
2
votes
2answers
537 views
iPhone Simulator custom CA certificate
I'd like to test an application on the iphone simulator which connects to a service using a certificate which is signed by our own CA. I can do this on the actual device by adding a provisioning ...
2
votes
1answer
2k views
Apache authentication via DOD PKI CAC
How does one implement Apache (within Linux) authentication using Department of
Defense CAC cards? I've heard it can be done but have not come across any details.
Currently we use Windows Active ...
2
votes
1answer
1k views
What's the difference between class 1 and class 3 roots, and the certificates signed by them?
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 ...
2
votes
2answers
651 views
What is the best cross-browser solution for browser based document signing (w/ digital signature)?
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 ...
2
votes
4answers
7k views
How to generate an SSL client certificate from a disconnected network?
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 ...
2
votes
7answers
309 views
What system do you use to encrypt files for a group of people (OS agnostic prefered)?
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 ...
1
vote
1answer
52 views
Is there a way to compare a CA issued Certificate against the CSR stored?
I would like to know if there is a way ( in JAVA ) to compare the CA issued certificate for a corresponding CSR against the CSR itself. To be more precise; DN comparison or the comparing the Public ...
1
vote
1answer
43 views
Code-Signing on OS X with a Network-HSM
I've been asked to redesign our build/sign/release processes. I'm pretty happy with Windows stuff and I've identified several networked-HSM products that will do what we need. They basically integrate ...
1
vote
2answers
180 views
Java implementations of TSP, OCSP and CMS
I'm trying to understand java APIs for digital signatures.
I should use custom cryptoprovider to compose digital signature. I know how to sign document and get detached signature using this CSP, now I ...
1
vote
1answer
188 views
Save a SecKeyRef Asymmetric Key Pair to disk as a Certificate
I have created two SecKeyRef items via SecKeyGeneratePair, but now I would like to turn the public key into a x509 Digital Certificate – and/or both the public and private keys into a PKCS #12 (.p12) ...
1
vote
1answer
331 views
SecTrustEvaluate returns kSecTrustResultRecoverableTrustFailure on iOS 5
Working to update an application I have to iOS5 after reports of it not working with the beta. The problem is tracked down to the fact that our custom SSL certificate verification is no longer ...
1
vote
1answer
305 views
Generating a PKCS10 Certificate request with extra fields in java
I need to add extra fields in the CSR like keyusage, regestrationID etc.I am using java IBM-sdk60. I've gone through x500 name API's and could not find any solution. Help on API's would be ...
1
vote
1answer
395 views
iPhone Public-Key Encryption SecKeyEncrypt returns error 9809 (errSSLCrypto)
I am trying to use the iPhone's PKI libraries to encrypt a short string (12345678), but I keep getting the error -9809 (i.e. errSSLCrypto) whenever I try to use SecKeyEncrypt. The SecureTransport.h ...
1
vote
2answers
202 views
Creating CSR programmatically
I am trying to create a CSR programmatically. I've read about ASN.1, RFC 2986, X.509.
I have also parsed several DER-encoded CSR files manually which were created using OpenSSL.
Everything looks clear ...
1
vote
2answers
113 views
What is the format of public key?
What is the format of public DSA key? And are all certificates are stored in base64?
1
vote
0answers
212 views
Verify detached xml signature using public key
I want to verify detached XML signature using a public key.
I have tried using gpg and openssl but no success.
Can anyone provide me with steps to verify using a public key.
1
vote
3answers
765 views
Why is SSLCertificateKeyFile needed for Apache?
What's the technical reason that SSLCertificateKeyFile is needed (the private key)? Where is that used and for what?
1
vote
2answers
436 views
Is there a (simple) way to parse CRL in Python?
I'm trying to do something stupid: load a CRL and output the list of revoked certificates serials.
With M2Crypto loading the CRL is done with:
import M2Crypto
crl = M2crypto.X509.load_crl('my.crl')
...
1
vote
3answers
428 views
What books will help me learn everything I can about SSL/PKI?
Since SSL is the backbone of the secure internet, (now technically called TLS), what are some good books I should read up on to understand all aspects of it?
I suppose I'll need to learn some math, ...
1
vote
5answers
345 views
Is it safe to leave my password-protected PGP secret key available publicly?
My PGP secret keys are always password protected, which means you need to decrypt it using a symmetric key to get access to my private key.
I am interested in making my password protected PGP secret ...
1
vote
2answers
120 views
Django and Common Access Cards (CAC)
A web app written in Python is planned, Django is a leading contender as framework.
One requirement is CAC access, wihout the need to hand enter username and password. From what I can tell, CAC ...
1
vote
1answer
368 views
Does the iPhone offer a good Cryptographic API/Service Provider?
How extensive are the Cryptographic options offered by Apple for the iPhone OS? Does it have public key infrastructure support? Can the Keystore (or I guess keychain) be leveraged by third party ...