| /external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/ |
| D | ChannelCrypterNetty.java | 56 void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) throws GeneralSecurityException; in decrypt() method 69 void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException; in decrypt() method
|
| D | AeadCrypter.java | 61 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method 74 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method
|
| D | AesGcmAeadCrypter.java | 87 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method in AesGcmAeadCrypter 93 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method in AesGcmAeadCrypter
|
| D | AltsChannelCrypter.java | 82 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertextBufs) in decrypt() method in AltsChannelCrypter 98 public void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException { in decrypt() method in AltsChannelCrypter
|
| D | AesGcmHkdfAeadCrypter.java | 74 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method in AesGcmHkdfAeadCrypter 82 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method in AesGcmHkdfAeadCrypter
|
| /external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/ |
| D | FakeChannelCrypter.java | 49 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) in decrypt() method in FakeChannelCrypter 63 public void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException { in decrypt() method in FakeChannelCrypter
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/aes/ |
| D | mod.rs | 70 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 99 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 125 fn decrypt(&mut self, data: &mut [u8]) { in decrypt() method 148 fn decrypt(&mut self, data: &mut [u8]) { in decrypt() method
|
| D | gcm_siv.rs | 37 fn decrypt(&self, data: &mut Vec<u8>, aad: &[u8], nonce: &[u8]) -> Result<(), GcmSivError> { in decrypt() method 59 fn decrypt(&self, data: &mut Vec<u8>, aad: &[u8], nonce: &[u8]) -> Result<(), GcmSivError> { in decrypt() method
|
| D | cbc.rs | 32 fn decrypt( in decrypt() method
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_openssl/src/ |
| D | aes.rs | 78 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 123 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 153 fn decrypt( in decrypt() method 201 fn decrypt(&mut self, data: &mut [u8]) { in decrypt() method 241 fn decrypt(&mut self, data: &mut [u8]) { in decrypt() method
|
| /external/tpm2-tss/src/tss2-sys/api/ |
| D | Tss2_Sys_EncryptDecrypt2.c | 19 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2_Prepare() 126 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2()
|
| D | Tss2_Sys_EncryptDecrypt.c | 18 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt_Prepare() 120 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt()
|
| /external/tpm2-tss/src/tss2-esys/api/ |
| D | Esys_EncryptDecrypt2.c | 74 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2() 153 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2_Async()
|
| D | Esys_EncryptDecrypt.c | 76 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt() 158 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt_Async()
|
| /external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
| D | aead.py | 47 def decrypt(self, nonce, data, associated_data): member in ChaCha20Poly1305 105 def decrypt(self, nonce, data, associated_data): member in AESCCM 162 def decrypt(self, nonce, data, associated_data): member in AESGCM
|
| /external/scapy/scapy/layers/tls/crypto/ |
| D | cipher_stream.py | 89 def decrypt(self, data): member in _StreamCipher 132 def decrypt(self, data): member in Cipher_NULL
|
| /external/rust/crates/openssl/src/ |
| D | cms.rs | 74 pub fn decrypt<T>(&self, pkey: &PKeyRef<T>, cert: &X509) -> Result<Vec<u8>, ErrorStack> in decrypt() method 273 let decrypt = in cms_encrypt_decrypt() localVariable 295 let decrypt = in cms_encrypt_decrypt() localVariable
|
| /external/openthread/third_party/mbedtls/repo/programs/psa/ |
| D | crypto_examples.c | 175 uint8_t decrypt[block_size]; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local 223 encrypt[input_size + block_size], decrypt[input_size + block_size]; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local 270 decrypt[input_size]; in cipher_example_encrypt_decrypt_aes_ctr_multi() local
|
| /external/mbedtls/programs/psa/ |
| D | crypto_examples.c | 175 uint8_t decrypt[block_size]; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local 223 encrypt[input_size + block_size], decrypt[input_size + block_size]; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local 270 decrypt[input_size]; in cipher_example_encrypt_decrypt_aes_ctr_multi() local
|
| /external/ltp/include/ |
| D | tst_af_alg.h | 155 bool decrypt; member
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_boringssl/src/ |
| D | aes.rs | 75 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 107 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method
|
| /external/python/cryptography/src/cryptography/ |
| D | fernet.py | 74 def decrypt(self, token, ttl=None): member in Fernet 176 def decrypt(self, msg, ttl=None): member in MultiFernet
|
| /external/rust/beto-rust/nearby/connections/ukey2/ukey2_connections/src/ |
| D | crypto_utils.rs | 32 pub(crate) fn decrypt<A: crypto_provider::aes::cbc::AesCbcPkcs7Padded>( in decrypt() function
|
| /external/fonttools/Lib/fontTools/misc/ |
| D | eexec.py | 31 def decrypt(cipherstring, R): function
|
| /external/okio/okio/src/jvmTest/kotlin/okio/ |
| D | CipherFactory.kt | 30 val decrypt: Cipher constant in okio.CipherFactory
|