Searched refs:tlsAead (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/ssl/test/runner/ |
D | cipher_suites.go | 65 type tlsAead struct { struct 83 aead func(key, fixedNonce []byte) *tlsAead 237 func aeadAESGCM(key, fixedNonce []byte) *tlsAead { 251 return &tlsAead{&fixedNonceAEAD{nonce1, nonce2, aead}, true} 254 func aeadCHACHA20POLY1305Old(key, fixedNonce []byte) *tlsAead { 259 return &tlsAead{aead, false} 295 func aeadCHACHA20POLY1305(key, fixedNonce []byte) *tlsAead { 305 return &tlsAead{&xorNonceAEAD{nonce1, nonce2, aead}, false}
|
D | conn.go | 369 case *tlsAead: 504 case *tlsAead: 913 if aead, ok := c.out.cipher.(*tlsAead); ok && aead.explicitNonce {
|
D | dtls.go | 283 } else if aead, ok := c.out.cipher.(*tlsAead); ok {
|