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;...