verifyPassword | R Documentation |
Verify a hashed password
verifyPassword(hash, passwd)
hash |
base64 hash to verify |
passwd |
password to verify |
TRUE if password matches hash, otherwise FALSE
hashPassword
# Hash password using default parameters hashed <- hashPassword("password") # verify invalid password verifyPassword(hashed, "bad password"); # verify correct password verifyPassword(hashed, "password")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.