Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I tried to use openssl to encrypt my data, I got confused.

First, I created a self-signed cert and the corresponding private key with the following command:

openssl req -newkey rsa:4096 -x509 -nodes -days 36500 -outform PEM -keyout Private.PEM -out Cert.PEM

Then, I use the cert to encrypt my file with the following command:

openssl smime -encrypt -aes-256-cbc -binary -outform DER -in MyFile.zip -out MyFile.zip.enc Cert.PEM

Finally, I can decrypt the encrypted data with this:

openssl smime -decrypt -binary -inform DER -in MyFile.zip.enc -out MyFile.Decrypted.zip -inkey Private.PEM

However, I opened the private key (Private.PEM) and substitude one char with another, save it, reissue the third command, I can still decrypte the file!

Is this supposed to happen, (the PEM format is error tolerant?), or my procedure is wrong?

Thanks.

share|improve this question
Which character did you change? I get the following error when I tried - unable to load signing key file 8516:error:0D0680A8:asn1 encoding routines:ASN1_CHECK_TLEN:wrong tag:tasn_dec.c:1319: 8516:error:0D07803A:asn1 encoding routines:ASN1_ITEM_EX_D2I:nested asn1 error:tasn_dec.c:381:Type=PKCS8_PRIV_KEY_INFO 8516:error:0907B00D:PEM routines:PEM_READ_BIO_PRIVATEKEY:ASN1 lib:pem_pkey.c:132: – Raam Nov 25 '12 at 14:08
As per my understanding, it should not work. – dbasic Mar 31 at 12:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.