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.go268 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
282 type xorNonceAEAD struct { struct
290 func (x *xorNonceAEAD) NonceSize() int { return 8 } argument
291 func (x *xorNonceAEAD) Overhead() int { return x.aead.Overhead() } argument
293 func (x *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { argument
300 func (x *xorNonceAEAD) Open(out, nonce, plaintext, additionalData []byte) ([]byte, error) { argument
317 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}