Dear folks,
  I have encrypted string, which was encrypted by following perl code

use Crypt;
print "enter the normal pin\n";
$entered_pin = <STDIN>;
chomp ( $entered_pin );
my $EPin = Crypt::Encrypt ( $entered_pin );
print "Encrypted pin is : $EPin\n\n\n";


I want to decrypt the encrypted string through RUBY code, is this
possible?
please let me know.

thanks,
-- 
Posted via http://www.ruby-forum.com/.