TheDocumentation Index
Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt
Use this file to discover all available pages before exploring further.
JSTime.password.hash() function provides a fast, built-in mechanism for securely hashing passwords in JSTime. No third-party dependencies are required.
By default this uses the Argon2id algorithm. Pass a second argument to
JSTime.hash.password() to use a different algorithm or configure the hashing parameters.
JSTime also implements the bcrypt algorithm. Specify
algorithm: "bcrypt" to use it.
To verify a password, use
JSTime.password.verify(). The algorithm and its parameters are stored in the hash itself, so there’s no need to re-specify any configuration.
See Docs > API > Hashing for complete documentation.