gossamer/subtle_crypto/key_pair_gen_algorithm

Types

pub type KeyPairGenAlgorithm {
  Rsa(
    name: rsa_algorithm.RsaAlgorithm,
    modulus_length: Int,
    public_exponent: uint8_array.Uint8Array,
    hash: hash_algorithm.HashAlgorithm,
  )
  Ec(
    name: ec_algorithm.EcAlgorithm,
    named_curve: named_curve.NamedCurve,
  )
  Ed25519
  X25519
  Other(String)
}

Constructors

Search Document