Home
last modified time | relevance | path

Searched refs:xorNonceAEAD (Results 1 – 1 of 1) sorted by relevance

/external/boringssl/src/ssl/test/runner/
Dcipher_suites.go293 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
307 type xorNonceAEAD struct { struct
315 func (x *xorNonceAEAD) NonceSize() int { return 8 } argument
316 func (x *xorNonceAEAD) Overhead() int { return x.aead.Overhead() } argument
318 func (x *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { argument
325 func (x *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) { argument
342 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}