Added my simple RSA implementation written in PERL for study purposes - it's INSECURE!
[mirrors/Programs.git] / perl / input.pl
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use Digest::MD5;
5 my $in = <>;
6 chop($in);
7 print Digest::MD5->md5_hex($in)."\n";
8
This page took 0.260493 seconds and 4 git commands to generate.