Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Crypt::Rijndael;
    ...
    my $encrypt_string = “STRING_PULLED_FROM_FILE”;
    my $plain_text = $rcipher->decrypt($encrypt_string);
    
  2. or download this
    use strict;
    use Crypt::Rijndael;
    ...
    my $data = “PLAINTEXT_TOBE_ENC”;
    my $encrypt_string = $rcipher->encrypt($data);
    my $plain_text = $rcipher->decrypt($encrypt_string);