如何使用公钥加密大文件,以便没有人除了拥有私钥的人能够解密?
我可以使RSA公钥和私钥,但当涉及到使用此命令加密大文件:
openssl rsautl -encrypt -pubin -inkey public.pem -in myLargeFile.xml -out myLargeFile_encrypted.xml
和如何我也可以执行解密….
我通过以下命令创建我的私有和公共密钥
openssl genrsa -out private.pem 1024
openssl rsa -in private.pem -out public.pem -outform PEM -pubout
我得到这个错误:
RSA operation error
3020:error:0406D06E:rsa routines:RSA_padding_add_PKCS1_type_2:data too large for key size:.\crypto\rsa\rsa_pk1.c:151:
我试图让键的大小从1024到1200位,没有运气,同样的错误