HomeSort by relevance Sort by last modified time
    Searched defs:Seal (Results 1 - 17 of 17) sorted by null

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305.go 42 func (c *chacha20poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
44 panic("chacha20poly1305: bad nonce length passed to Seal")
51 return c.seal(dst, nonce, plaintext, additionalData)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305.go 42 func (c *chacha20poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
44 panic("chacha20poly1305: bad nonce length passed to Seal")
51 return c.seal(dst, nonce, plaintext, additionalData)
  /external/boringssl/src/ssl/test/runner/
chacha20_poly1305.go 161 func (c *chaCha20Poly1305) Seal(dst, nonce, plaintext, additionalData []byte) []byte {
cipher_suites.go 234 // constructed. Since a seal and open operation may be running
243 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
245 return f.aead.Seal(out, f.sealNonce, plaintext, additionalData)
284 // constructed. Since a seal and open operation may be running
293 func (x *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
295 ret := x.aead.Seal(out, x.sealNonce, plaintext, additionalData)
  /prebuilts/go/darwin-x86/src/crypto/aes/
aes_gcm.go 96 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
98 func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
modes_test.go 46 func (*testAEAD) Seal(a, b, c, d []byte) []byte { return []byte{} }
gcm_s390x.go 215 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
217 func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
309 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
311 func (g *gcmKMA) Seal(dst, nonce, plaintext, data []byte) []byte {
  /prebuilts/go/linux-x86/src/crypto/aes/
aes_gcm.go 96 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
98 func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
modes_test.go 46 func (*testAEAD) Seal(a, b, c, d []byte) []byte { return []byte{} }
gcm_s390x.go 215 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
217 func (g *gcmAsm) Seal(dst, nonce, plaintext, data []byte) []byte {
309 // Seal encrypts and authenticates plaintext. See the cipher.AEAD interface for
311 func (g *gcmKMA) Seal(dst, nonce, plaintext, data []byte) []byte {
  /tools/dexter/slicer/export/slicer/
buffer.h 62 size_t Seal(size_t alignment) {
  /prebuilts/go/darwin-x86/src/crypto/cipher/
gcm.go 16 // NonceSize returns the size of the nonce that must be passed to Seal
24 // Seal encrypts and authenticates plaintext, authenticates the
31 Seal(dst, nonce, plaintext, additionalData []byte) []byte
37 // value passed to Seal.
138 func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
  /prebuilts/go/linux-x86/src/crypto/cipher/
gcm.go 16 // NonceSize returns the size of the nonce that must be passed to Seal
24 // Seal encrypts and authenticates plaintext, authenticates the
31 Seal(dst, nonce, plaintext, additionalData []byte) []byte
37 // value passed to Seal.
138 func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
  /external/v8/src/zone/
zone.h 54 void Seal() { sealed_ = true; }
  /prebuilts/go/darwin-x86/src/crypto/tls/
cipher_suites.go 173 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
175 return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
194 func (f *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
198 result := f.aead.Seal(out, f.nonceMask[:], plaintext, additionalData)
  /prebuilts/go/linux-x86/src/crypto/tls/
cipher_suites.go 173 func (f *fixedNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
175 return f.aead.Seal(out, f.nonce[:], plaintext, additionalData)
194 func (f *xorNonceAEAD) Seal(out, nonce, plaintext, additionalData []byte) []byte {
198 result := f.aead.Seal(out, f.nonceMask[:], plaintext, additionalData)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntsecpkg.h     [all...]

Completed in 372 milliseconds