Searched defs:chaCha20Poly1305 (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/ssl/test/runner/ |
D | chacha20_poly1305.go | 120 type chaCha20Poly1305 struct { struct 121 key [32]byte 133 func (c *chaCha20Poly1305) NonceSize() int { 137 func (c *chaCha20Poly1305) Overhead() int { return 16 } 139 func (c *chaCha20Poly1305) poly1305(tag *[16]byte, nonce, ciphertext, additionalData []byte) { 161 func (c *chaCha20Poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte { 176 func (c *chaCha20Poly1305) Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
|