/external/boringssl/src/fipstools/ |
D | cavp_aes_gcm_test.cc | 61 !t->GetBytes(&key, "Key") || in TestAEADEncrypt() 62 !t->GetBytes(&iv, "IV") || in TestAEADEncrypt() 63 !t->GetBytes(&pt, "PT") || in TestAEADEncrypt() 64 !t->GetBytes(&aad, "AAD") || in TestAEADEncrypt() 102 !t->GetBytes(&key, "Key") || in TestAEADDecrypt() 103 !t->GetBytes(&aad, "AAD") || in TestAEADDecrypt() 104 !t->GetBytes(&tag, "Tag") || in TestAEADDecrypt() 105 !t->GetBytes(&iv, "IV") || in TestAEADDecrypt() 106 !t->GetBytes(&ct, "CT") || in TestAEADDecrypt()
|
D | cavp_tdes_test.cc | 94 (num_keys == 0 && !t->GetBytes(&keys, "KEYs")) || in TestKAT() 96 (!t->GetBytes(&key1, "KEY1") || in TestKAT() 97 !t->GetBytes(&key2, "KEY2") || in TestKAT() 98 !t->GetBytes(&key3, "KEY3"))) || in TestKAT() 99 (ctx->has_iv && !t->GetBytes(&iv, "IV")) || in TestKAT() 100 !t->GetBytes(&in, in_label)) { in TestKAT() 216 if (!t->GetBytes(&key1, "KEY1") || in TestMCT() 217 !t->GetBytes(&key2, "KEY2") || in TestMCT() 218 !t->GetBytes(&key3, "KEY3") || in TestMCT() 219 (ctx->has_iv && !t->GetBytes(&iv, "IV")) || in TestMCT() [all …]
|
D | cavp_tlskdf_test.cc | 52 if (!t->GetBytes(&premaster, "pre_master_secret") || in TestTLSKDF() 53 !t->GetBytes(&server_random, "serverHello_random") || in TestTLSKDF() 54 !t->GetBytes(&client_random, "clientHello_random") || in TestTLSKDF() 57 !t->GetBytes(&key_block_server_random, "server_random") || in TestTLSKDF() 58 !t->GetBytes(&key_block_client_random, "client_random") || in TestTLSKDF()
|
D | cavp_ctr_drbg_test.cc | 49 !t->GetBytes(&entropy, "EntropyInput") || in TestCTRDRBG() 50 !t->GetBytes(&nonce, "Nonce") || in TestCTRDRBG() 51 !t->GetBytes(&personalization_str, "PersonalizationString") || in TestCTRDRBG() 52 !t->GetBytes(&ai1, "AdditionalInput") || in TestCTRDRBG() 53 !t->GetBytes(&ai2, "AdditionalInput/2") || in TestCTRDRBG()
|
D | cavp_rsa2_sigver_test.cc | 52 return t->GetBytes(&ctx->N, "n"); in TestRSA2SigVer() 58 !t->GetBytes(&e_bytes, "e") || in TestRSA2SigVer() 59 !t->GetBytes(&msg, "Msg") || in TestRSA2SigVer() 60 !t->GetBytes(&sig, "S")) { in TestRSA2SigVer()
|
D | cavp_aes_test.cc | 145 !t->GetBytes(&key, "KEY") || in TestCipher() 146 (ctx->has_iv && !t->GetBytes(&iv, "IV"))) { in TestCipher() 152 if (!t->GetBytes(&in, "PLAINTEXT")) { in TestCipher() 156 if (!t->GetBytes(&in, "CIPHERTEXT")) { in TestCipher()
|
D | cavp_hmac_test.cc | 60 !t->GetBytes(&key, "Key") || in TestHMAC() 61 !t->GetBytes(&msg, "Msg")) { in TestHMAC()
|
D | cavp_keywrap_test.cc | 72 !t->GetBytes(&key, "K") || in TestCipher() 73 !t->GetBytes(&in, in_label)) { in TestCipher()
|
/external/boringssl/src/crypto/fipsmodule/rand/ |
D | ctrdrbg_test.cc | 90 ASSERT_TRUE(t->GetBytes(&seed, "EntropyInput")); in TEST() 91 ASSERT_TRUE(t->GetBytes(&personalisation, "PersonalizationString")); in TEST() 92 ASSERT_TRUE(t->GetBytes(&reseed, "EntropyInputReseed")); in TEST() 93 ASSERT_TRUE(t->GetBytes(&ai_reseed, "AdditionalInputReseed")); in TEST() 94 ASSERT_TRUE(t->GetBytes(&ai1, "AdditionalInput1")); in TEST() 95 ASSERT_TRUE(t->GetBytes(&ai2, "AdditionalInput2")); in TEST() 96 ASSERT_TRUE(t->GetBytes(&expected, "ReturnedBits")); in TEST()
|
/external/boringssl/src/crypto/cmac/ |
D | cmac_test.cc | 132 ASSERT_TRUE(t->GetBytes(&key, "key")); in TEST() 133 ASSERT_TRUE(t->GetBytes(&msg, "msg")); in TEST() 134 ASSERT_TRUE(t->GetBytes(&tag, "tag")); in TEST() 199 ASSERT_TRUE(t->GetBytes(&key, "Key1")); in RunCAVPTest() 200 ASSERT_TRUE(t->GetBytes(&key2, "Key2")); in RunCAVPTest() 201 ASSERT_TRUE(t->GetBytes(&key3, "Key3")); in RunCAVPTest() 205 ASSERT_TRUE(t->GetBytes(&key, "Key")); in RunCAVPTest() 207 ASSERT_TRUE(t->GetBytes(&msg, "Msg")); in RunCAVPTest() 208 ASSERT_TRUE(t->GetBytes(&mac, "Mac")); in RunCAVPTest()
|
/external/boringssl/src/crypto/cipher_extra/ |
D | cipher_test.cc | 220 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TestCipher() 221 ASSERT_TRUE(t->GetBytes(&plaintext, "Plaintext")); in TestCipher() 222 ASSERT_TRUE(t->GetBytes(&ciphertext, "Ciphertext")); in TestCipher() 224 ASSERT_TRUE(t->GetBytes(&iv, "IV")); in TestCipher() 227 ASSERT_TRUE(t->GetBytes(&aad, "AAD")); in TestCipher() 228 ASSERT_TRUE(t->GetBytes(&tag, "Tag")); in TestCipher() 333 ASSERT_TRUE(t->GetBytes(&key, "key")); in TEST() 334 ASSERT_TRUE(t->GetBytes(&iv, "iv")); in TEST() 335 ASSERT_TRUE(t->GetBytes(&msg, "msg")); in TEST() 336 ASSERT_TRUE(t->GetBytes(&ct, "ct")); in TEST()
|
D | aead_test.cc | 122 ASSERT_TRUE(t->GetBytes(&key, "KEY")); in TEST_P() 123 ASSERT_TRUE(t->GetBytes(&nonce, "NONCE")); in TEST_P() 124 ASSERT_TRUE(t->GetBytes(&in, "IN")); in TEST_P() 125 ASSERT_TRUE(t->GetBytes(&ad, "AD")); in TEST_P() 126 ASSERT_TRUE(t->GetBytes(&ct, "CT")); in TEST_P() 127 ASSERT_TRUE(t->GetBytes(&tag, "TAG")); in TEST_P() 229 ASSERT_TRUE(t->GetBytes(&key, "KEY")); in TEST_P() 230 ASSERT_TRUE(t->GetBytes(&nonce, "NONCE")); in TEST_P() 231 ASSERT_TRUE(t->GetBytes(&in, "IN")); in TEST_P() 232 ASSERT_TRUE(t->GetBytes(&ad, "AD")); in TEST_P() [all …]
|
/external/boringssl/src/crypto/curve25519/ |
D | ed25519_test.cc | 30 ASSERT_TRUE(t->GetBytes(&private_key, "PRIV")); in TEST() 32 ASSERT_TRUE(t->GetBytes(&public_key, "PUB")); in TEST() 34 ASSERT_TRUE(t->GetBytes(&message, "MESSAGE")); in TEST() 35 ASSERT_TRUE(t->GetBytes(&expected_signature, "SIG")); in TEST()
|
D | x25519_test.cc | 141 ASSERT_TRUE(t->GetBytes(&priv, "private")); in TEST() 142 ASSERT_TRUE(t->GetBytes(&pub, "public")); in TEST() 143 ASSERT_TRUE(t->GetBytes(&shared, "shared")); in TEST()
|
/external/boringssl/src/crypto/fipsmodule/aes/ |
D | aes_test.cc | 36 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TestRaw() 37 ASSERT_TRUE(t->GetBytes(&plaintext, "Plaintext")); in TestRaw() 38 ASSERT_TRUE(t->GetBytes(&ciphertext, "Ciphertext")); in TestRaw() 78 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TestKeyWrap() 79 ASSERT_TRUE(t->GetBytes(&plaintext, "Plaintext")); in TestKeyWrap() 80 ASSERT_TRUE(t->GetBytes(&ciphertext, "Ciphertext")); in TestKeyWrap() 143 ASSERT_TRUE(t->GetBytes(&ct, "ct")); in TEST() 144 ASSERT_TRUE(t->GetBytes(&key, "key")); in TEST() 145 ASSERT_TRUE(t->GetBytes(&msg, "msg")); in TEST()
|
/external/boringssl/src/crypto/fipsmodule/modes/ |
D | gcm_test.cc | 70 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TEST() 71 ASSERT_TRUE(t->GetBytes(&plaintext, "Plaintext")); in TEST() 72 ASSERT_TRUE(t->GetBytes(&additional_data, "AdditionalData")); in TEST() 73 ASSERT_TRUE(t->GetBytes(&nonce, "Nonce")); in TEST() 74 ASSERT_TRUE(t->GetBytes(&ciphertext, "Ciphertext")); in TEST() 75 ASSERT_TRUE(t->GetBytes(&tag, "Tag")); in TEST()
|
/external/boringssl/src/crypto/evp/ |
D | evp_test.cc | 149 if (!t->GetBytes(&input, "Input")) { in ImportKey() 179 !t->GetBytes(&output, "Output")) { in ImportKey() 220 if (!t->GetBytes(&label, "OAEPLabel")) { in SetupContext() 294 if (!t->GetBytes(&input, "Input") || in TestEVP() 295 (is_verify && !t->GetBytes(&output, "Output"))) { in TestEVP() 319 !t->GetBytes(&output, "Output")) { in TestEVP() 397 if (!t->GetBytes(&output, "Output")) { in TestEVP() 480 ASSERT_TRUE(t->GetBytes(&msg, "msg")); in RunWycheproofTest() 482 ASSERT_TRUE(t->GetBytes(&sig, "sig")); in RunWycheproofTest()
|
D | scrypt_test.cc | 44 ASSERT_TRUE(t->GetBytes(&password, "Password")); in TEST() 45 ASSERT_TRUE(t->GetBytes(&salt, "Salt")); in TEST() 46 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TEST()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
D | ANTLRxxxxStreamFixture.cs | 67 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr); in TestANTLRInputStreamConstructorDoesNotHang() 86 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr); in TestSizeOnANTLRInputStream() 97 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr); in TestConsumeAndIndexOnANTLRInputStream() 120 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr); in TestConsumeAllCharactersInAnANTLRInputStream() 136 byte[] buffer = encoding.GetBytes("One\r\nTwo"); in TestConsumeOnANTLRInputStream() 199 byte[] buffer = encoding.GetBytes("One\r\nTwo"); in TestResetOnANTLRInputStream() 237 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree"); in TestSubstringOnANTLRInputStream() 257 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree"); in TestSeekOnANTLRInputStream()
|
/external/boringssl/src/crypto/poly1305/ |
D | poly1305_test.cc | 74 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TEST() 75 ASSERT_TRUE(t->GetBytes(&in, "Input")); in TEST() 76 ASSERT_TRUE(t->GetBytes(&mac, "MAC")); in TEST()
|
/external/boringssl/src/crypto/hmac_extra/ |
D | hmac_test.cc | 95 ASSERT_TRUE(t->GetBytes(&key, "Key")); in TEST() 96 ASSERT_TRUE(t->GetBytes(&input, "Input")); in TEST() 97 ASSERT_TRUE(t->GetBytes(&output, "Output")); in TEST()
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | MarshalUtils.cs | 48 return EncodingUTF8.GetBytes(str); in GetBytesUTF8() 64 return EncodingASCII.GetBytes(str); in GetBytesASCII()
|
/external/llvm/unittests/Support/ |
D | StreamingMemoryObjectTest.cpp | 21 size_t GetBytes(unsigned char *Buffer, size_t Length) override { in GetBytes() function in __anon3726ecbd0111::NullDataStreamer 32 size_t GetBytes(unsigned char *OutBuffer, size_t Length) override { in GetBytes() function in __anon3726ecbd0111::BufferStreamer
|
/external/perfetto/src/protozero/test/ |
D | fake_scattered_buffer.cc | 58 void FakeScatteredBuffer::GetBytes(size_t start, size_t length, uint8_t* buf) { in GetBytes() function in protozero::FakeScatteredBuffer 69 GetBytes(start, length, buffer.get()); in GetBytesAsString()
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
D | ChecksumImpl.cs | 84 Update(Encoding.UTF8.GetBytes(data)); in Update() 94 Update(encoding.GetBytes(data)); in Update()
|