Tagged Questions
7
votes
1answer
843 views
What is the difference between a PKCS12 keystore and a PKCS11 keystore?
I'm interested in Java-NSS libraries, and I'm reading the Sun's P11 Guide.
I am confused on the following:
What is the difference between using a PKCS12 keystore and a PKCS11 keystore?
A keystore is ...
3
votes
1answer
108 views
JSS SSLSocket problem choosing Client Certificate
This is a cross-post from the Mozilla Crypto Dev ML. Hoping that someone on SO has some experience using org.mozilla.jss. Link: JSS - MDN
I'm trying to make two separate HTTPS requests to a remote ...
1
vote
1answer
383 views
How OpenSSL/Mozilla NSS RSA sign and verify (PK11_Sign, PK11_Verify, PK11_VerifyRecover functions) work?
I have my RSA public and private keys (all of p,q,e,n,d) in PEM format. I am curious to know:
How PK11_Sign(), PK11_Verify() and PK11_VerifyRecover() (from OpenSSL/Mozilla NSS library) work with ...
1
vote
1answer
440 views
Convert OpenSSL public key into NSS one
How do I convert public key generated by OpenSSL into one NSS would understand? I've generated key with OpenSSL, exported it into pkcs12 format, imported it into NSS database and then extract public ...