gossamer/subtle_crypto/derive_algorithm

Types

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

Constructors

Search Document