Home
last modified time | relevance | path

Searched defs:DecapsulationKey (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/mlkem768/
Dmlkem768.go73 type DecapsulationKey struct { struct
74 dk [DecapsulationKeySize]byte
75 encryptionKey
76 decryptionKey
81 func (dk *DecapsulationKey) Bytes() []byte {
89 func (dk *DecapsulationKey) EncapsulationKey() []byte {
114 func generateKey(dk *DecapsulationKey) (*DecapsulationKey, error) {
134 func newKeyFromSeed(dk *DecapsulationKey, seed []byte) (*DecapsulationKey, error) {
151 func newKeyFromExtendedEncoding(dk *DecapsulationKey, dkBytes []byte) (*DecapsulationKey, error) {
179 func kemKeyGen(dk *DecapsulationKey, d, z *[32]byte) *DecapsulationKey {
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/tls/
Dkey_schedule.go129 func kyberDecapsulate(dk *mlkem768.DecapsulationKey, c []byte) ([]byte, error) {