Home
last modified time | relevance | path

Searched defs:decrypt (Results 1 – 25 of 215) sorted by relevance

123456789

/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/
DChannelCrypterNetty.java56 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
DAeadCrypter.java61 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
DAesGcmAeadCrypter.java99 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
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DFakeChannelCrypter.java49 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/tink/testing/java_src/java/com/google/crypto/tink/testing/
DAeadServiceImpl.java68 AeadDecryptResponse decrypt(AeadDecryptRequest request) throws GeneralSecurityException { in decrypt() method in AeadServiceImpl
84 public void decrypt( in decrypt() method in AeadServiceImpl
DHybridServiceImpl.java79 private HybridDecryptResponse decrypt(HybridDecryptRequest request) in decrypt() method in HybridServiceImpl
97 public void decrypt( in decrypt() method in HybridServiceImpl
DStreamingAeadServiceImpl.java82 private StreamingAeadDecryptResponse decrypt(StreamingAeadDecryptRequest request) in decrypt() method in StreamingAeadServiceImpl
109 public void decrypt( in decrypt() method in StreamingAeadServiceImpl
/external/tink-java/src/test/java/com/google/crypto/tink/hybrid/internal/testing/
DLegacyHybridDecryptKeyManagerTest.java89 HybridDecrypt decrypt = decryptKeyManager.getPrimitive(protoPrivateKey.toByteString()); in testCreateHybridDecrypt_works() local
119 HybridDecrypt decrypt = decryptKeyManager.getPrimitive(protoPrivateKey.toByteString()); in testGetPublicKeyData_works() local
/external/tink-java/src/main/java/com/google/crypto/tink/hybrid/internal/
DEciesDemHelper.java53 byte[] decrypt(byte[] demKeyValue, byte[] ciphertext, int prefixAndHeaderSize) in decrypt() method
125 public byte[] decrypt(byte[] demKeyValue, byte[] ciphertext, int prefixAndHeaderSize) in decrypt() method in EciesDemHelper.AesGcmDem
186 public byte[] decrypt(byte[] demKeyValue, byte[] ciphertext, int prefixAndHeaderSize) in decrypt() method in EciesDemHelper.AesCtrHmacDem
227 public byte[] decrypt(byte[] demKeyValue, byte[] ciphertext, int prefixAndHeaderSize) in decrypt() method in EciesDemHelper.AesSivDem
/external/tpm2-tss/src/tss2-sys/api/
DTss2_Sys_EncryptDecrypt2.c19 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2_Prepare()
126 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt2()
DTss2_Sys_EncryptDecrypt.c18 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt_Prepare()
120 TPMI_YES_NO decrypt, in Tss2_Sys_EncryptDecrypt()
/external/tink-java/src/main/java/com/google/crypto/tink/aead/internal/
DInsecureNonceAesGcmJce.java86 public byte[] decrypt(final byte[] iv, final byte[] ciphertext, final byte[] associatedData) in decrypt() method in InsecureNonceAesGcmJce
97 public byte[] decrypt( in decrypt() method in InsecureNonceAesGcmJce
DInsecureNonceChaCha20Poly1305Jce.java119 public byte[] decrypt(final byte[] nonce, final byte[] ciphertext, final byte[] associatedData) in decrypt() method in InsecureNonceChaCha20Poly1305Jce
130 public byte[] decrypt( in decrypt() method in InsecureNonceChaCha20Poly1305Jce
DInsecureNonceChaCha20Base.java78 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
DInsecureNonceChaCha20Poly1305Base.java120 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
/external/tpm2-tss/src/tss2-esys/api/
DEsys_EncryptDecrypt2.c74 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2()
153 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt2_Async()
DEsys_EncryptDecrypt.c76 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt()
158 TPMI_YES_NO decrypt, in Esys_EncryptDecrypt_Async()
/external/tink/java_src/src/main/java/com/google/crypto/tink/aead/internal/
DInsecureNonceChaCha20Base.java78 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
DInsecureNonceChaCha20Poly1305Base.java120 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
/external/tink/python/tink/
D_keyset_handle_test.py38 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
/external/tink-java/src/main/java/com/google/crypto/tink/
DHybridDecrypt.java71 byte[] decrypt(final byte[] ciphertext, final byte[] contextInfo) throws GeneralSecurityException; in decrypt() method
/external/tink/python/tink/hybrid/
D_hybrid_decrypt.py53 def decrypt(self, ciphertext: bytes, context_info: bytes) -> bytes: member in HybridDecrypt
/external/tink/java_src/src/main/java/com/google/crypto/tink/
DHybridDecrypt.java71 byte[] decrypt(final byte[] ciphertext, final byte[] contextInfo) throws GeneralSecurityException; in decrypt() method
/external/scapy/scapy/layers/tls/crypto/
Dcipher_stream.py95 def decrypt(self, data): member in _StreamCipher
138 def decrypt(self, data): member in Cipher_NULL
/external/tink-java/src/main/java/com/google/crypto/tink/subtle/
DIndCpaCipher.java44 byte[] decrypt(final byte[] ciphertext) throws GeneralSecurityException; in decrypt() method

123456789