Current section

Files

Jump to
gossamer src gossamer subtle_crypto wrap_algorithm.gleam
Raw

src/gossamer/subtle_crypto/wrap_algorithm.gleam

import gossamer/uint8_array.{type Uint8Array}
pub type WrapAlgorithm {
AesCbc(iv: Uint8Array)
AesCtr(counter: Uint8Array, length: Int)
RsaOaep
RsaOaepWith(label: Uint8Array)
Other(String)
}