Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »
Peter Dawson
if storedHash = hashFcn(userPassword & storedSalt) //9,999,999,999 tests if you randomly store the storedSalt ANYWHERE within userPassword, it becomes for (int i=0; i<len(userPassword); i++) { String toTest = substring(userPassword,0,i) & storedSalt & substring(userPassword,i) if storedHash = hashFcn(toTest) { return true; } } return false;...
cracking the 10Million dollar Computer ! - Peter Dawson