Tagged Questions
The pkcs#8 tag has no wiki summary.
4
votes
2answers
2k views
How to read a password encrypted key with java?
I have private key stored in file in PKCS8 DER format and protected by password. What is the easiest way to read it?
Here is the code I use to load unencrypted one:
InputStream in = new ...
2
votes
1answer
351 views
ASN.1 DER formatted private key
Why is the modulus padded with leading zeros? I was reading PKCS#1 and PKCS#8 but didn't find anything about it.
In c# the leading zeros must be removed, does anybody know why?
At ...
1
vote
0answers
30 views
ASN1 sequence to use in Convert::PEM to read pkcs8 DER privateKey? PERL
I'm trying to convert to PEM a private key which is encoded and encrypted in DER using pkcs8, with module Convert::PEM and it ask for an ASN Sequence (I believe the algorithm used to encrypt is ...
1
vote
1answer
911 views
Getting RSA private key from PEM BASE64 Encoded private key file
I have a private key file (PEM BASE64 encoded). I want to use it else where to decrypt some other data.Using Java i tried to read the file and decode the BASE64 encoded data in it...
This is the code ...
1
vote
2answers
384 views
How to convert a PKCS#8 encoded RSA key into PKCS#1 in Java?
Is it possible to convert a PKCS#8 encoded RSA private key into PKCS#1?
I know this can be done easily via openssl, but can it be done in Java?
1
vote
0answers
225 views
Load PKCS#8 binary key into Ruby
I'm trying to load a particular private key encoded in binary DER format (PKCS#8) into Ruby. However, OpenSSL::PKey won't recognize it. I can make it work by doing some console work and transforming ...
1
vote
2answers
3k views
How can I decode a PKCS#5 encrypted PKCS#8 Private Key in Java
I have a PKCS#5 encrypted PKCS#8 RSA private key stored in a disk file (originally generated by SSLPlus, circa 1997), for example:
-----BEGIN ENCRYPTED PRIVATE KEY-----
...
0
votes
0answers
10 views
Use Openss .NET Wrapper to read DER PrivateKey?
How can I get the same result in OpenSSL .Net wraper as this linux command?:
$ openssl pkcs8 -inform DER -in private.key
EnterPassword:
---BEGIN RSA PRIVATE KEY---
... D A T A .....
---END ...
0
votes
2answers
862 views
How to convert pkcs8 key file to DER format in #C?
How to convert pkcs8 key file to DER format, to get Private and Public key in Xml format?
with openssl I can do it using:
openssl pkcs8 -inform DER -in aaa010101aaa_FIEL.key -out aaa.txt
...
0
votes
1answer
735 views
How to convert PKCS#8-formatted PEM private key to the tranditional format?
From OpenSSL 1.0 change log:
Make PKCS#8 the default write format
for private keys, replacing the
traditional format. This form is standardised, more secure and doesn't
include an ...
0
votes
2answers
3k views
How to import PKCS#8 RSA privateKey (created by OpenSSL) in C#
I'm trying to find a way to read a privateKey created using OpenSSL PKCS#8 RSA in C# without use external library.
Does Someone know how i can do this?