/external/boringssl/src/ssl/test/runner/ |
chacha20_poly1305_test.go | 97 out = aead.Seal(nil, nonce, input, ad) 151 out = aead.Seal(nil, nonce, input, ad)
|
cipher_suites.go | 218 // constructed. Since a seal and open operation may be running 227 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { 229 return f.aead.Seal(out, f.sealNonce, plaintext, additionalData) 272 // constructed. Since a seal and open operation may be running 281 func (x *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { 283 ret := x.aead.Seal(out, x.sealNonce, plaintext, additionalData)
|
chacha20_poly1305.go | 180 func (c *chaCha20Poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
|
conn.go | 520 c.Seal(payload[:0], nonce, payload, additionalData[:]) [all...] |
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
benchmark_test.go | 25 out = aesgcm.Seal(out[:0], nonce[:], buf, nonce[:]) 38 out = aesgcm.Seal(out[:0], nonce[:], buf, nonce[:])
|
gcm_test.go | 151 ct := aesgcm.Seal(nil, nonce, plaintext, ad)
|
gcm.go | 15 // NonceSize returns the size of the nonce that must be passed to Seal 23 // Seal encrypts and authenticates plaintext, authenticates the 29 Seal(dst, nonce, plaintext, data []byte) []byte 35 // value passed to Seal. 117 func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
benchmark_test.go | 25 out = aesgcm.Seal(out[:0], nonce[:], buf, nonce[:]) 38 out = aesgcm.Seal(out[:0], nonce[:], buf, nonce[:])
|
gcm_test.go | 151 ct := aesgcm.Seal(nil, nonce, plaintext, ad)
|
gcm.go | 15 // NonceSize returns the size of the nonce that must be passed to Seal 23 // Seal encrypts and authenticates plaintext, authenticates the 29 Seal(dst, nonce, plaintext, data []byte) []byte 35 // value passed to Seal. 117 func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
|
/external/v8/test/mjsunit/harmony/ |
proxies-integrity.js | 34 (function Seal() { 43 Object.seal(proxy); 136 Object.seal(target);
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
cipher_suites.go | 138 // constructed. Since a seal and open operation may be running 147 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { 149 return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
|
conn.go | 387 c.Seal(payload[:0], nonce, payload, additionalData[:])
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
cipher_suites.go | 138 // constructed. Since a seal and open operation may be running 147 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte { 149 return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
|
conn.go | 387 c.Seal(payload[:0], nonce, payload, additionalData[:])
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
ntsecpkg.h | [all...] |