You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node:crypto only have support for algorithm supported in openssl.
But in nowadays, we may use more likely to use argon2, yescrypt for hashing passwords,
but those isn't in node:crypto, if we can just
Part of #28200
Deno.hash / Deno.password
In Node.js, we do hash like:
node:crypto
only have support for algorithm supported in openssl.But in nowadays, we may use more likely to use argon2, yescrypt for hashing passwords,
but those isn't in
node:crypto
, if we can justand
it will be more easier to use, and
implementation in native will also be faster.
(or maybe use wasm to avoid v8 internal binding costs)
The text was updated successfully, but these errors were encountered: