The Pbkdf2Params
dictionary of the Web Crypto API represents the object that should be passed as the algorithm
parameter into SubtleCrypto.deriveKey()
, when using the PBKDF2 algorithm.
The Pbkdf2Params
dictionary of the Web Crypto API represents the object that should be passed as the algorithm
parameter into SubtleCrypto.deriveKey()
, when using the PBKDF2 algorithm.
name
A string. This should be set to PBKDF2
.
hash
A string representing the digest algorithm to use. This may be one of:
SHA-1
SHA-256
SHA-384
SHA-512
Warning: SHA-1
is considered vulnerable in most cryptographic applications, but is still considered safe in PBKDF2. However, it's advisable to transition away from it everywhere, so unless you need to use SHA-1
, don't. Use a different digest algorithm instead.
salt
An ArrayBuffer
, a TypedArray
, or a DataView
. This should be a random or pseudo-random value of at least 16 bytes. Unlike the input key material passed into deriveKey()
, salt
does not need to be kept secret.
iterations
A Number
representing the number of times the hash function will be executed in deriveKey()
. This determines how computationally expensive (that is, slow) the deriveKey()
operation will be. In this context, slow is good, since it makes it more expensive for an attacker to run a dictionary attack against the keys. The general guidance here is to use as many iterations as possible, subject to keeping an acceptable level of performance for your application.
See the examples for SubtleCrypto.deriveKey()
.
Specification |
---|
Web Cryptography API # dfn-Pbkdf2Params |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Pbkdf2Params