Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    close FH_plain;
    unlink $decrypted; #delete the plain text file
    close FH_crypted;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    print FH_decrypted $cipher->finish;
    close FH_crypted;
    close FH_decrypted;