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#L304: plaintext, err := r.aead.Open(nil, r.nextNonce(), ciphertext, aad)
crypto/tls
cipher_suites.go#L479: return f.aead.Open(out, f.nonce[:], ciphertext, additionalData)
cipher_suites.go#L509: result, err := f.aead.Open(out, f.nonceMask[:], ciphertext, additionalData)
conn.go#L381: plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)