The pkcs#1 tag has no wiki summary.
5
votes
3answers
303 views
Generating RSA keys in PKCS#1 format in Java
When I generate an RSA key pair using the Java API, the public key is encoded in the X.509 format and the private key is encoded in the PKCS#8 format. I'm looking to encode both as PKCS#1. Is this ...
3
votes
1answer
89 views
Why is RSACryptoServiceProvider.Encrypt() output not stable?
Until today I was living under the impression that RSA encryption using RSA is deterministic. After all, how should signature verification work if it wasn't?
To my big suprise, .NETs ...
2
votes
1answer
398 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 ...
2
votes
2answers
452 views
Creating PKCS1 public key in Net Framework
I need to create an RSA 1024 bit "PKCS1 public key without PEM headers" and store it as an array of bytes.
In Net. Framework I have 2 arrays: RSAParameters.Modulus and RSAParameters.Exponent (which ...
2
votes
2answers
454 views
“PKCS#1 v2.0 encryption is usually called OAEP encryption” Where can I confirm it?
I heard that "PKCS#1 v2.0 encryption is usually called OAEP encryption".
I'll need some kind of "official" doc saying this before using it on my project. I'm trying to find it with no sucess. Any ...