Hashing
Hash sensitive information like passwords and email addresses.
Hashing is the practise of converting data into another format to secure or hide it. Hashing is done by hashing algorithms that are mathematically designed to be one-way, meaning it’s hard to decode back to the original format without some sort of key for example.
Ask’s built-in hashing solution uses sha256 encryption. SHA256 turns a given string into a 256 character long string.
Use the hash
object for this.
hash()
hash()
Returns the given value enypted by the SHA256 algorithm.
Usage
Parameters:
Typically a string.
check()
check()
Check if a value corresponds with a hash. Used for e.g. verifying passwords. Returns True/False.
Usage
Parameters:
A SHA256 encrypted value.
This function only helps you save a bit of typing. Technically you could just do:
But using .check
is a bit easier to both read and write.
Last updated