I need to decrypt a file that is encrypted with a private key. I have a public key that I can use to decrypt this file. How can i do this. I did:
openssl rsautl -in file -inkey key.pem
But that does not work. This shows an error like:
unable to load Private Key 3074128072:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c:696:Expecting: ANY PRIVATE KEY
source share