Webcrypto already have support for PBKDF2, but it seems to be the only derivation function available until now. Of course, we have HKDF and HMAC but it not suitable for user-input/password.
The Argon2 is the winner of PHC. The Argon2 is used in LibSodium and some other softwares (like KeePass). Also we have it natively available in PHP and Go and bindings.
Have any plan to implement Argon2 (Argon2i, Argon2d and Argon2id) as an alternative for PBKDF2 in Webcrypto?
Webcrypto already have support for PBKDF2, but it seems to be the only derivation function available until now. Of course, we have HKDF and HMAC but it not suitable for user-input/password.
The Argon2 is the winner of PHC. The Argon2 is used in LibSodium and some other softwares (like KeePass). Also we have it natively available in PHP and Go and bindings.
Have any plan to implement Argon2 (Argon2i, Argon2d and Argon2id) as an alternative for PBKDF2 in Webcrypto?
Refereces: