Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
m.SecretSaltString = "TekTipsWasFoundToBeVeryGood, EspeciallyIn 2015..." && your very long Salt key, could be a novel 128 bytes would be enough
m.UserID = "Fred Bloggs" && as entered by the user when setting up password
M.Password = "MyWeakPassword" && as entered by user when setting up password
m.MyHash = HashAlgorithmOfYourhoice(HashAlgorithmOfYourhoice(m.SecretSaltString+m.UserID+HashAlgorithmOfYourhoice(m.Password)))
Generate a unique salt upon creation of each stored credential (not just per user or system wide)
Griff said:with one you are protecting your data, with the other you are protecting their login and user name
replace userstable.password with sys(2007,userstable.password)
if userstable.password == sys(2007,thisform.password.value)
** ok go ahead
else
** no don't go ahead
endif
replace all usertable.password with sys(2007,"my enormous secret salt string..."+usertable.password)
if userstable.password == sys(2007,"my enormous secret salt string..."+sys(2007,thisform.password.value))
** ok go ahead
else
** no don't go ahead
endif