gossamer/subtle_crypto/derive_algorithm

Types

Algorithm parameters for subtle_crypto.derive_bits and derive_key.

Non-standard or unnamed algorithms use Other(String).

pub type DeriveAlgorithm {
  Hkdf(
    hash: hash_algorithm.HashAlgorithm,
    info: typed_array.TypedArray,
    salt: typed_array.TypedArray,
  )
  Pbkdf2(
    hash: hash_algorithm.HashAlgorithm,
    iterations: Int,
    salt: typed_array.TypedArray,
  )
  Ecdh(public: crypto_key.CryptoKey)
  Other(String)
}

Constructors

Search Document