crypto/cipher.AEAD.Open (method)

5 uses

	crypto/cipher (current package)
		cipher.go#L97: 	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)

	crypto/internal/hpke
		hpke.go#L282: 	plaintext, err := r.aead.Open(nil, r.nextNonce(), ciphertext, aad)

	crypto/tls
		cipher_suites.go#L475: 	return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
		cipher_suites.go#L505: 	result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
		conn.go#L383: 			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)