$rsa->use_pkcs1_padding; my $buf = 't'; my $cipher = $rsa->encrypt($buf); my $plain = $rsa->decrypt($cipher); print "$plain\n";