http://login.gatorlink.ufl.edu/support/index.html
user = getuser()
pass = getpassfromuser()
hash = get_crypted_hash(user)
newhash = encrypt(pass)
if (hash == newhash)
print Hooray
else
don't print Hooray
end