in reply to Need and algorithm to converse characters to unique and permanent Serials
#!/usr/bin/perl use Digest::MD5 qw/md5_hex/; while(<>) { print md5_hex($_)," $ARGV\n"; } [download]