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