View Source jose_jwk_use_enc behaviour (JOSE v1.11.9)
Summary
Callbacks
-callback block_encryptor(KTY, Fields) -> JWEMap when KTY :: any(), Fields :: map(), JWEMap :: map().
-callback decrypt_private(CipherText, Options, KTY) -> PlainText
when
CipherText :: iodata(),
Options :: any(),
KTY :: any(),
PlainText :: iodata().
-callback derive_key(KTY) -> DerivedKey when KTY :: any(), DerivedKey :: iodata().
-callback derive_key(OtherKTY, KTY) -> DerivedKey
when OtherKTY :: any(), KTY :: any(), DerivedKey :: iodata().
-callback encrypt_public(PlainText, Options, KTY) -> CipherText
when
PlainText :: iodata(),
Options :: any(),
KTY :: any(),
CipherText :: iodata().