gossamer/subtle_crypto/derive_algorithm

Types

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

Constructors

Search Document