3
我產生私有/公共密鑰和一個小的文本文件,同RSA密鑰,同樣的信息,不同的加密
openssl genrsa -out priv.pem
openssl rsa -out pub.pem -in priv.pem -pubout
echo "A" > plain.txt
在加密與公共密鑰文本文件的兩倍,像這樣,
openssl rsautl -encrypt -pubin -inkey pub.pem -in plain.txt -out cipher.txt
你會看到兩個cipher.txt不同。這是我不明白的。
你可能想看看我的答案[這裏](http://stackoverflow.com/questions/16325057/why-does-rsa-encrypted-text-give-me-different-results-for-the-same -text) – ChiaraHsieh
這應該回答你的問題: http://security.stackexchange.com/questions/33752/will-encrypting-the-same-file-with-gpg-and-the-same-key-produce- the-same-ciphert – Gaston
或者這個:http://stackoverflow.com/q/13389211/535741 – Jumbogram