HomeSort by relevance Sort by last modified time
    Searched refs:aad (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64-err.asm 9 aad label
genopcode.asm 85 aad label
87 aad 5 label
  /external/chromium_org/net/quic/crypto/
chacha20_poly1305_decrypter_test.cc 22 const char* aad; member in struct:__anon13451::TestVector
101 string aad; local
106 ASSERT_TRUE(DecodeHexString(test_vectors[i].aad, &aad));
116 // This deliberately tests that the decrypter can handle an AAD that
118 StringPiece(aad.length() ? aad.data() : NULL, aad.length()), ct));
chacha20_poly1305_encrypter_test.cc 22 const char* aad; member in struct:__anon13455::TestVector
70 string aad; local
75 ASSERT_TRUE(DecodeHexString(test_vectors[i].aad, &aad));
82 // This deliberately tests that the encrypter can handle an AAD that
84 StringPiece(aad.length() ? aad.data() : NULL, aad.length()), pt));
aes_128_gcm_12_decrypter_test.cc 27 // AAD =
35 // AAD =
45 // length, plaintext length, AAD length, and tag length.
62 const char* aad; member in struct:__anon13442::TestVector
283 string aad; local
289 ASSERT_TRUE(DecodeHexString(test_vectors[j].aad, &aad));
300 EXPECT_EQ(test_info.aad_len, aad.length() * 8);
318 // This deliberately tests that the decrypter can handle an AAD that
320 aad.length() ? aad : StringPiece(), ciphertext))
    [all...]
aes_128_gcm_12_encrypter_test.cc 27 // AAD =
35 // AAD =
45 // length, plaintext length, AAD length, and tag length.
61 const char* aad; member in struct:__anon13446::TestVector
236 string aad; local
242 ASSERT_TRUE(DecodeHexString(test_vectors[j].aad, &aad));
251 EXPECT_EQ(test_info.aad_len, aad.length() * 8);
259 // This deliberately tests that the encrypter can handle an AAD that
261 aad.length() ? aad : StringPiece(), pt))
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes_wrap.h 46 const u8 *aad, size_t aad_len,
51 const u8 *aad, size_t aad_len, const u8 *tag,
55 const u8 *aad, size_t aad_len, u8 *tag);
58 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth);
61 const u8 *aad, size_t aad_len, const u8 *auth,
aes-gcm.c 229 static void aes_gcm_ghash(const u8 *H, const u8 *aad, size_t aad_len,
241 ghash(H, aad, aad_len, S);
256 const u8 *aad, size_t aad_len, u8 *crypt, u8 *tag)
272 aes_gcm_ghash(H, aad, aad_len, crypt, plain_len, S);
290 const u8 *aad, size_t aad_len, const u8 *tag, u8 *plain)
306 aes_gcm_ghash(H, aad, aad_len, crypt, crypt_len, S);
323 const u8 *aad, size_t aad_len, u8 *tag)
325 return aes_gcm_ae(key, key_len, iv, iv_len, NULL, 0, aad, aad_len, NULL,
aes-ccm.c 29 const u8 *aad, size_t aad_len, size_t plain_len,
50 os_memcpy(aad_buf + 2, aad, aad_len);
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth)
163 aes_ccm_auth_start(aes, M, L, nonce, aad, aad_len, plain_len, x);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
201 aes_ccm_auth_start(aes, M, L, nonce, aad, aad_len, crypt_len, x);
  /external/llvm/test/MC/X86/
x86-16.s 568 // CHECK: aad $1
570 aad $1
572 // CHECK: aad
574 aad $0xA
576 // CHECK: aad
578 aad
x86-32.s 660 // CHECK: aad $1
662 aad $1
664 // CHECK: aad
666 aad $0xA
668 // CHECK: aad
670 aad
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
modes.h 93 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad,
119 const unsigned char *aad, size_t alen);
  /external/openssl/include/openssl/
modes.h 93 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad,
119 const unsigned char *aad, size_t alen);
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
ccm128.c 105 const unsigned char *aad,size_t alen)
144 for(;i<16 && alen;++i,++aad,--alen)
145 ctx->cmac.c[i] ^= *aad;
gcm128.c 768 ctx->len.u[0] = 0; /* AAD length */
826 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx,const unsigned char *aad,size_t len)
849 ctx->Xi.c[n] ^= *(aad++);
862 GHASH(ctx,aad,i);
863 aad += i;
868 for (i=0; i<16; ++i) ctx->Xi.c[i] ^= aad[i];
870 aad += 16;
876 for (i=0; i<len; ++i) ctx->Xi.c[i] ^= aad[i];
910 /* First call to encrypt finalizes GHASH(AAD) */
1057 /* First call to decrypt finalizes GHASH(AAD) */
    [all...]
  /external/openssl/crypto/modes/
ccm128.c 105 const unsigned char *aad,size_t alen)
144 for(;i<16 && alen;++i,++aad,--alen)
145 ctx->cmac.c[i] ^= *aad;
gcm128.c 787 ctx->len.u[0] = 0; /* AAD length */
853 int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx,const unsigned char *aad,size_t len)
876 ctx->Xi.c[n] ^= *(aad++);
889 GHASH(ctx,aad,i);
890 aad += i;
895 for (i=0; i<16; ++i) ctx->Xi.c[i] ^= aad[i];
897 aad += 16;
903 for (i=0; i<len; ++i) ctx->Xi.c[i] ^= aad[i];
937 /* First call to encrypt finalizes GHASH(AAD) */
1114 /* First call to decrypt finalizes GHASH(AAD) */
    [all...]
  /external/valgrind/main/exp-dhat/
dh_main.c 1116 ULong aad = api->deaths == 0 local
    [all...]
  /external/qemu/target-i386/
helper.h 25 DEF_HELPER_2(aad, void, env, int)
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
assyntax.h 381 #define AAD CHOICE(aad, aad, aad)
    [all...]
  /external/mesa3d/src/mesa/x86/
assyntax.h 381 #define AAD CHOICE(aad, aad, aad)
    [all...]
  /external/valgrind/main/VEX/test/
test-amd64.c 861 TEST_BCD(aad, 0x12340407, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A));
    [all...]
test-i386.c 823 TEST_BCD(aad, 0x12340407, CC_A, (CC_C | CC_P | CC_Z | CC_S | CC_O | CC_A));
    [all...]
  /external/valgrind/main/perf/
tinycc.c     [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/
x86insn_nasm.gperf 16 aad, aadm_insn, 2, SUF_Z, 0x01, 0, 0, NOT_64, 0, 0, 0
    [all...]

Completed in 436 milliseconds

1 2