crypto/cipher.AEAD.Seal (method)
6 uses
crypto/cipher (current package)
gcm.go#L33: Seal(dst, nonce, plaintext, additionalData []byte) []byte
crypto/internal/hpke
hpke.go#L220: ciphertext := s.aead.Seal(nil, s.nextNonce(), plaintext, aad)
crypto/tls
cipher_suites.go#L470: return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
cipher_suites.go#L493: result := f.aead.Seal(out, f.nonceMask[:], plaintext, additionalData)
conn.go#L532: record = c.Seal(record[:recordHeaderLen],
conn.go#L537: record = c.Seal(record, nonce, payload, additionalData)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |