Skip to content

Commit 0631076

Browse files
guest20toddr
authored andcommitted
plaintext = decrypt(cyphertext)
1 parent 01fe9b7 commit 0631076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RSA.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Crypt::OpenSSL::RSA - RSA encoding and decoding, using the openSSL libraries
4040
$ciphertext = $rsa->encrypt($plaintext);
4141
4242
$rsa_priv = Crypt::OpenSSL::RSA->new_private_key($key_string);
43-
$plaintext = $rsa->encrypt($ciphertext);
43+
$plaintext = $rsa->decrypt($ciphertext);
4444
4545
$rsa = Crypt::OpenSSL::RSA->generate_key(1024); # or
4646
$rsa = Crypt::OpenSSL::RSA->generate_key(1024, $prime);

0 commit comments

Comments
 (0)