You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
318 B
Raku

$pass = "password";
($encstring) = (getpwnam("stephen"))[1];
$salt = substr($encstring,0,2);
$encpass = substr($encstring,2);
$newencpass = crypt($pass,$salt);
if($encstring eq $newencpass)
{
print "Correct\n";
}
else
{
print "Incorrect\n";
}