Liking cljdoc? Tell your friends :D

web.crypto.Pbkdf2Params

The Pbkdf2Params dictionary of the Web Crypto API represents object that should be passed as the algorithm parameter into when using the PBKDF2 algorithm.

The Pbkdf2Params dictionary of the Web Crypto API represents
object that should be passed as the algorithm parameter into
when using the PBKDF2 algorithm.
raw docstring

hashcljs

(hash this)

Property.

A DOMString representing the digest algorithm to use. This may one of: SHA-1 SHA-256 SHA-384 SHA-512 Warning: SHA-1 is considered vulnerable in most cryptographic but is still considered safe in PBKDF2. However, it's advisable transition away from it everywhere, so unless you need to use don't. Use a different digest algorithm instead.

Property.

A DOMString representing the digest algorithm to use. This may
one of:
SHA-1
SHA-256
SHA-384
SHA-512
Warning: SHA-1 is considered vulnerable in most cryptographic
but is still considered safe in PBKDF2. However, it's advisable
transition away from it everywhere, so unless you need to use
don't. Use a different digest algorithm instead.
sourceraw docstring

iterationscljs

(iterations this)

Property.

A Number representing the number of times the hash function will executed in deriveKey(). This determines how computationally (that is, slow) the deriveKey() operation will be. In this context, is good, since it makes it more expensive for an attacker to a dictionary attack against the keys. The general guidance here to use as many iterations as possible, subject to keeping an level of performance for your application.

Property.

A Number representing the number of times the hash function will
executed in deriveKey(). This determines how computationally
(that is, slow) the deriveKey() operation will be. In this context,
is good, since it makes it more expensive for an attacker to
a dictionary attack against the keys. The general guidance here
to use as many iterations as possible, subject to keeping an
level of performance for your application.
sourceraw docstring

namecljs

(name this)

Property.

A DOMString. This should be set to PBKDF2.

Property.

A DOMString. This should be set to PBKDF2.
sourceraw docstring

saltcljs

(salt this)

Property.

A BufferSource. This should be a random or pseudo-random value at least 16 bytes. Unlike the input key material passed into salt does not need to be kept secret.

Property.

A BufferSource. This should be a random or pseudo-random value
at least 16 bytes. Unlike the input key material passed into
salt does not need to be kept secret.
sourceraw docstring

set-hash!cljs

(set-hash! this val)

Property.

A DOMString representing the digest algorithm to use. This may one of: SHA-1 SHA-256 SHA-384 SHA-512 Warning: SHA-1 is considered vulnerable in most cryptographic but is still considered safe in PBKDF2. However, it's advisable transition away from it everywhere, so unless you need to use don't. Use a different digest algorithm instead.

Property.

A DOMString representing the digest algorithm to use. This may
one of:
SHA-1
SHA-256
SHA-384
SHA-512
Warning: SHA-1 is considered vulnerable in most cryptographic
but is still considered safe in PBKDF2. However, it's advisable
transition away from it everywhere, so unless you need to use
don't. Use a different digest algorithm instead.
sourceraw docstring

set-iterations!cljs

(set-iterations! this val)

Property.

A Number representing the number of times the hash function will executed in deriveKey(). This determines how computationally (that is, slow) the deriveKey() operation will be. In this context, is good, since it makes it more expensive for an attacker to a dictionary attack against the keys. The general guidance here to use as many iterations as possible, subject to keeping an level of performance for your application.

Property.

A Number representing the number of times the hash function will
executed in deriveKey(). This determines how computationally
(that is, slow) the deriveKey() operation will be. In this context,
is good, since it makes it more expensive for an attacker to
a dictionary attack against the keys. The general guidance here
to use as many iterations as possible, subject to keeping an
level of performance for your application.
sourceraw docstring

set-name!cljs

(set-name! this val)

Property.

A DOMString. This should be set to PBKDF2.

Property.

A DOMString. This should be set to PBKDF2.
sourceraw docstring

set-salt!cljs

(set-salt! this val)

Property.

A BufferSource. This should be a random or pseudo-random value at least 16 bytes. Unlike the input key material passed into salt does not need to be kept secret.

Property.

A BufferSource. This should be a random or pseudo-random value
at least 16 bytes. Unlike the input key material passed into
salt does not need to be kept secret.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close