-1
當我使用openssl加密一個文件時,使用相同的pubkey.pem
,但密文是不同的?使用openssl加密文件,使用相同的pubkey.pem密文是不同的?
[email protected]:~/extremelyhardRSA# openssl rsautl -encrypt -pubin -inkey pubkey.pem -in test.txt -out flag.enc1
[email protected]:~/extremelyhardRSA# openssl rsautl -encrypt -pubin -inkey pubkey.pem -in test.txt -out flag.enc2
[email protected]:~/extremelyhardRSA# diff flag.enc1 flag.enc2
二進制文件flag.enc1
和flag.enc2
不同。
謝謝!我知道了。 –