#!/usr/bin/perl # Shows your encrypted password print "Enter your password: "; chomp($password = <STDIN>); $salt = sprintf("%02x",($$^time^rand)&0xFF); print "Your encrypted password is: ".crypt($password,$salt)."\n";
April 24, 2007
encrypt
No Comments »
No comments yet.
RSS feed for comments on this post. TrackBack URL





