Documentation ¶
Index ¶
- func DeriveECDHES(alg string, apuData, apvData []byte, priv *ecdsa.PrivateKey, ...) []byte
- func KeyUnwrap(block cipher.Block, ciphertext []byte) ([]byte, error)
- func KeyWrap(block cipher.Block, cek []byte) ([]byte, error)
- func NewCBCHMAC(key []byte, newBlockCipher func([]byte) (cipher.Block, error)) (cipher.AEAD, error)
- func NewConcatKDF(hash crypto.Hash, z, algID, ptyUInfo, ptyVInfo, supPubInfo, supPrivInfo []byte) io.Reader
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeriveECDHES ¶
func DeriveECDHES(alg string, apuData, apvData []byte, priv *ecdsa.PrivateKey, pub *ecdsa.PublicKey, size int) []byte
DeriveECDHES derives a shared encryption key using ECDH/ConcatKDF as described in JWE/JWA.
func KeyUnwrap ¶
KeyUnwrap implements NIST key unwrapping; it unwraps a content encryption key (cek) with the given block cipher.
func KeyWrap ¶
KeyWrap implements NIST key wrapping; it wraps a content encryption key (cek) with the given block cipher.
func NewCBCHMAC ¶
NewCBCHMAC instantiates a new AEAD based on CBC+HMAC.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.