/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/internal/ |
D | AesGcmAeadCrypter.java | 47 ByteBuffer ciphertext, ByteBuffer plaintext, @Nullable ByteBuffer aad, byte[] nonce) in encryptAad() 61 ByteBuffer plaintext, ByteBuffer ciphertext, @Nullable ByteBuffer aad, byte[] nonce) in decryptAad() 75 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, byte[] nonce) in encrypt() 81 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, ByteBuffer aad, byte[] nonce) in encrypt() 87 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() 93 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt()
|
D | AeadCrypter.java | 36 void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, byte[] nonce) in encrypt() 49 void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, ByteBuffer aad, byte[] nonce) in encrypt() 61 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() 74 void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt()
|
D | AesGcmHkdfAeadCrypter.java | 58 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, byte[] nonce) in encrypt() 66 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, ByteBuffer aad, byte[] nonce) in encrypt() 74 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() 82 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt()
|
D | ChannelCrypterNetty.java | 56 void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) throws GeneralSecurityException; in decrypt()
|
/external/rust/crates/zip/src/ |
D | aes_ctr.rs | 185 let mut ciphertext = []; in crypt_aes_256_0_byte() localVariable 198 let mut ciphertext = [0x98, 0xa9, 0x8c, 0x26, 0x0e]; in crypt_aes_128_5_byte() localVariable 210 let mut ciphertext = [0x36, 0x55, 0x5c, 0x61, 0x3c]; in crypt_aes_192_5_byte() localVariable 222 let mut ciphertext = [0xc2, 0x47, 0xc0, 0xdc, 0x56]; in crypt_aes_256_5_byte() localVariable 235 let mut ciphertext = [ in crypt_aes_128_40_byte() localVariable 251 let mut ciphertext = [ in crypt_aes_192_40_byte() localVariable 267 let mut ciphertext = [ in crypt_aes_256_40_byte() localVariable
|
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/ |
D | AesGcmHkdfAeadCrypterTest.java | 39 final byte[] ciphertext; field in AesGcmHkdfAeadCrypterTest.TestVector 61 byte[] ciphertext; field in AesGcmHkdfAeadCrypterTest.TestVectorBuilder 100 TestVectorBuilder withCiphertext(String ciphertext) { in withCiphertext()
|
D | FakeChannelCrypter.java | 49 public void decrypt(ByteBuf out, ByteBuf tag, List<ByteBuf> ciphertext) in decrypt() 65 ByteBuf ciphertext = ciphertextAndTag.readSlice(ciphertextAndTag.readableBytes() - TAG_BYTES); in decrypt() local
|
/external/boringssl/src/crypto/hrss/ |
D | hrss_test.cc | 158 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local 183 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local 218 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local 355 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/hrss/ |
D | hrss_test.cc | 158 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local 183 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local 326 uint8_t ciphertext[HRSS_CIPHERTEXT_BYTES]; in TEST() local
|
/external/oss-fuzz/projects/libsodium/ |
D | secretbox_easy_fuzzer.cc | 35 unsigned char *ciphertext = (unsigned char *) malloc(ciphertext_len); in LLVMFuzzerTestOneInput() local
|
/external/ImageMagick/MagickCore/ |
D | cipher.c | 280 static inline void AddRoundKey(const unsigned int *ciphertext, in AddRoundKey() 320 static void FinalizeRoundKey(const unsigned int *ciphertext, in FinalizeRoundKey() 349 static void InitializeRoundKey(const unsigned char *ciphertext, in InitializeRoundKey() 382 unsigned char *ciphertext) in EncipherAESBlock()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/aes/ |
D | aes_test.cc | 37 std::vector<uint8_t> key, plaintext, ciphertext; in TestRaw() local 79 std::vector<uint8_t> key, plaintext, ciphertext; in TestKeyWrap() local 128 std::vector<uint8_t> key, plaintext, ciphertext; in TestKeyWrapWithPadding() local
|
/external/boringssl/src/crypto/fipsmodule/aes/ |
D | aes_test.cc | 37 std::vector<uint8_t> key, plaintext, ciphertext; in TestRaw() local 79 std::vector<uint8_t> key, plaintext, ciphertext; in TestKeyWrap() local 128 std::vector<uint8_t> key, plaintext, ciphertext; in TestKeyWrapWithPadding() local
|
/external/wycheproof/java/com/google/security/wycheproof/testcases/ |
D | AesEaxTest.java | 44 String message, String keyMaterial, String nonce, String aad, String ciphertext) { in EaxTestVector()
|
/external/boringssl/src/crypto/cipher_extra/ |
D | aead_test.cc | 493 uint8_t ciphertext[128]; in TEST_P() local 632 alignas(16) uint8_t ciphertext[sizeof(plaintext) + EVP_AEAD_MAX_OVERHEAD]; in TEST_P() local 664 uint8_t ciphertext[1024] = {0}; in TEST_P() local 765 const uint8_t *ciphertext, size_t ciphertext_len, in aead_ctx_open() 803 alignas(2) uint8_t ciphertext[sizeof(plaintext) + EVP_AEAD_MAX_OVERHEAD + 1]; in TEST_P() local
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/cipher_extra/ |
D | aead_test.cc | 505 uint8_t ciphertext[128]; in TEST_P() local 644 alignas(16) uint8_t ciphertext[sizeof(plaintext) + EVP_AEAD_MAX_OVERHEAD]; in TEST_P() local 676 uint8_t ciphertext[1024] = {0}; in TEST_P() local 777 const uint8_t *ciphertext, size_t ciphertext_len, in aead_ctx_open() 814 alignas(2) uint8_t ciphertext[sizeof(plaintext) + EVP_AEAD_MAX_OVERHEAD + 1]; in TEST_P() local
|
D | cipher_test.cc | 164 const std::vector<uint8_t> &ciphertext, in TestOperation() 319 std::vector<uint8_t> key, iv, plaintext, ciphertext, aad, tag; in TestCipher() local
|
/external/rust/crates/quiche/deps/boringssl/src/decrepit/xts/ |
D | xts_test.cc | 219 std::vector<uint8_t> key, iv, plaintext, ciphertext; in TEST() local
|
/external/boringssl/src/decrepit/xts/ |
D | xts_test.cc | 219 std::vector<uint8_t> key, iv, plaintext, ciphertext; in TEST() local
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/hpke/ |
D | hpke_test.cc | 142 std::vector<uint8_t> ciphertext; member 297 std::vector<uint8_t> ciphertext( in TEST() local 380 uint8_t ciphertext[100]; in TEST() local
|
/external/boringssl/src/decrepit/cfb/ |
D | cfb_test.cc | 27 uint8_t ciphertext[16*4]; member
|
/external/rust/crates/quiche/deps/boringssl/src/decrepit/cfb/ |
D | cfb_test.cc | 27 uint8_t ciphertext[16*4]; member
|
/external/python/cryptography/docs/development/custom-vectors/arc4/ |
D | verify_arc4.go | 27 ciphertext string member
|
/external/python/cryptography/docs/development/custom-vectors/rsa-oaep-sha2/ |
D | VerifyRSAOAEPSHA2.java | 34 public byte[] ciphertext; field in TestVectorData 354 public void testDecrypt(byte[] plaintext, byte[] ciphertext) throws Exception { in testDecrypt()
|
/external/python/cryptography/docs/development/custom-vectors/cast5/ |
D | verify_cast5.go | 27 ciphertext string member
|