/aosp_15_r20/external/tink/python/tink/ |
H A D | _keyset_handle_test.py | 38 def decrypt(self, plaintext: bytes, associated_data: bytes) -> bytes: member in FaultyAead 47 def decrypt(self, plaintext: bytes, associated_data: bytes) -> bytes: member in BadAead1 56 def decrypt(self, plaintext: bytes, associated_data: bytes) -> bytes: member in BadAead2
|
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/programs/psa/ |
H A D | crypto_examples.c | 162 uint8_t decrypt[block_size]; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local 210 encrypt[input_size + block_size], decrypt[input_size + block_size]; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local 257 decrypt[input_size]; in cipher_example_encrypt_decrypt_aes_ctr_multi() local
|
/aosp_15_r20/external/mbedtls/programs/psa/ |
H A D | crypto_examples.c | 162 uint8_t decrypt[block_size]; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local 210 encrypt[input_size + block_size], decrypt[input_size + block_size]; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local 257 decrypt[input_size]; in cipher_example_encrypt_decrypt_aes_ctr_multi() local
|
/aosp_15_r20/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/ |
H A 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
|
H A 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
|
H A D | AesGcmAeadCrypter.java | 99 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() method in AesGcmAeadCrypter 105 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() method in AesGcmAeadCrypter
|
H A D | AltsChannelCrypter.java | 81 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertextBufs) in decrypt() method in AltsChannelCrypter 96 public void decrypt(ByteBuf out, ByteBuf ciphertextAndTag) throws GeneralSecurityException { in decrypt() method in AltsChannelCrypter
|
H A 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
|
/aosp_15_r20/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/ |
H A 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
|
/aosp_15_r20/external/tink/testing/java_src/java/com/google/crypto/tink/testing/ |
H A D | AeadServiceImpl.java | 68 AeadDecryptResponse decrypt(AeadDecryptRequest request) throws GeneralSecurityException { in decrypt() method in AeadServiceImpl 84 public void decrypt( in decrypt() method in AeadServiceImpl
|
H A D | HybridServiceImpl.java | 79 private HybridDecryptResponse decrypt(HybridDecryptRequest request) in decrypt() method in HybridServiceImpl 97 public void decrypt( in decrypt() method in HybridServiceImpl
|
H A D | StreamingAeadServiceImpl.java | 82 private StreamingAeadDecryptResponse decrypt(StreamingAeadDecryptRequest request) in decrypt() method in StreamingAeadServiceImpl 109 public void decrypt( in decrypt() method in StreamingAeadServiceImpl
|
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | AesEncryptionUtil.java | 42 static byte[] decrypt(SecretKey key, DataInputStream cipherStream) throws IOException { in decrypt() method in AesEncryptionUtil 75 static byte[] decrypt(SecretKey key, byte[] cipherText) throws IOException { in decrypt() method in AesEncryptionUtil
|
/aosp_15_r20/cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-13253/ |
H A D | poc.cpp | 68 void decrypt(Plugin *plugin, Decrypt decrypt) { in decrypt() argument
|
/aosp_15_r20/external/tpm2-tss/src/tss2-sys/api/ |
H A D | Tss2_Sys_EncryptDecrypt2.c | 19 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2_Prepare() 126 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2()
|
H A D | Tss2_Sys_EncryptDecrypt.c | 18 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt_Prepare() 120 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt()
|
/aosp_15_r20/external/tpm2-tss/src/tss2-esys/api/ |
H A D | Esys_EncryptDecrypt2.c | 74 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2() 153 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2_Async()
|
H A D | Esys_EncryptDecrypt.c | 76 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt() 158 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt_Async()
|
/aosp_15_r20/external/rust/crates/openssl/src/ |
D | cms.rs | 76 pub fn decrypt<T>(&self, pkey: &PKeyRef<T>, cert: &X509) -> Result<Vec<u8>, ErrorStack> in decrypt() method 326 let decrypt = in cms_encrypt_decrypt() localVariable 351 let decrypt = in cms_encrypt_decrypt() localVariable
|
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/aead/internal/ |
H A D | InsecureNonceChaCha20Base.java | 78 public byte[] decrypt(final byte[] nonce, final byte[] ciphertext) in decrypt() method in InsecureNonceChaCha20Base 84 public byte[] decrypt(final byte[] nonce, ByteBuffer ciphertext) throws GeneralSecurityException { in decrypt() method in InsecureNonceChaCha20Base
|
H A D | InsecureNonceChaCha20Poly1305Base.java | 120 public byte[] decrypt(final byte[] nonce, final byte[] ciphertext, final byte[] associatedData) in decrypt() method in InsecureNonceChaCha20Poly1305Base 135 public byte[] decrypt(ByteBuffer ciphertext, final byte[] nonce, final byte[] associatedData) in decrypt() method in InsecureNonceChaCha20Poly1305Base
|
/aosp_15_r20/external/scapy/scapy/layers/tls/crypto/ |
H A D | cipher_stream.py | 89 def decrypt(self, data): member in _StreamCipher 132 def decrypt(self, data): member in Cipher_NULL
|
/aosp_15_r20/external/tpm2-tss/test/integration/ |
H A D | sapi-util.c | 248 TPMI_YES_NO decrypt, in tpm_encrypt_decrypt_cfb() 305 TPMI_YES_NO decrypt, in tpm_encrypt_decrypt_2_cfb() 362 TPMI_YES_NO decrypt, in encrypt_decrypt_cfb()
|
/aosp_15_r20/external/rust/beto-rust/nearby/crypto/crypto_provider_stubs/src/ |
D | lib.rs | 186 fn decrypt( in decrypt() method 335 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 376 fn decrypt(&self, msg: &[u8], aad: &[u8], nonce: &[u8; 12]) -> Result<Vec<u8>, AeadError> { in decrypt() method 418 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 453 fn decrypt(&self, msg: &[u8], aad: &[u8], nonce: &[u8; 12]) -> Result<Vec<u8>, AeadError> { in decrypt() method
|
/aosp_15_r20/external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/aes_cp/ |
D | mod.rs | 63 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method 86 fn decrypt(&self, block: &mut AesBlock) { in decrypt() method
|