Tagged Questions
1
vote
1answer
84 views
How to sign data with .p12 file in Java?
How to sign data with .p12 file in Java?
Java seems to support only until pkcs11, I just can't find the standard library for pkcs12. There's nothing in 'java.security'... for decoding .p12 file to ...
1
vote
3answers
806 views
How to encode an RSA key using PKCS12 in Python?
I'm using Python (under Google App Engine), and I have some RSA private keys that I need to export in PKCS#12 format. Is there anything out there that will assist me with this? I'm using ...
0
votes
0answers
14 views
How do I generate a private key, in PKCS#1 padding, from the private exponent and modulus?
I want to convert 3 variables, the modulus, the public exponent and the private exponent (n,e,d) into PKCS#1 padding, so I can use them in the RSA implementation in the PHP Security Library. Does ...