HomeSort by relevance Sort by last modified time
    Searched refs:ghash (Results 1 - 19 of 19) sorted by null

  /external/wpa_supplicant_8/src/crypto/
aes-gcm.c 103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) function
186 wpa_hexdump_key(MSG_EXCESSIVE, "Hash subkey H for GHASH",
207 ghash(H, iv, iv_len, J0);
210 ghash(H, len_buf, sizeof(len_buf), J0);
241 ghash(H, aad, aad_len, S);
242 ghash(H, crypt, crypt_len, S);
245 ghash(H, len_buf, sizeof(len_buf), S);
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_decrypter_nss.cc 13 #include "crypto/ghash.h"
233 crypto::GaloisHash ghash(ghash_key);
234 ghash.UpdateAdditional(gcm_params->pAAD, gcm_params->ulAADLen);
235 ghash.UpdateCiphertext(enc, output_len);
237 ghash.Finish(auth_tag, Aes128Gcm12Decrypter::kAuthTagSize);
aes_128_gcm_12_encrypter_nss.cc 13 #include "crypto/ghash.h"
239 crypto::GaloisHash ghash(ghash_key);
240 ghash.UpdateAdditional(gcm_params->pAAD, gcm_params->ulAADLen);
241 ghash.UpdateCiphertext(out, output_len);
242 ghash.Finish(out + output_len, Aes128Gcm12Encrypter::kAuthTagSize);
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
modes_lcl.h 113 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len); member in struct:gcm128_context
gcm128.c 576 #define GHASH(ctx,in,len) gcm_ghash_4bit((ctx)->Xi.u,(ctx)->Htable,in,len)
680 # ifdef GHASH
681 # undef GHASH
682 # define GHASH(ctx,in,len) (*gcm_ghash_p)(ctx->Xi.u,ctx->Htable,in,len)
720 ctx->ghash = gcm_ghash_clmul;
732 ctx->ghash = gcm_ghash_4bit_mmx;
735 ctx->ghash = gcm_ghash_4bit_x86;
739 ctx->ghash = gcm_ghash_4bit;
744 ctx->ghash = gcm_ghash_neon;
748 ctx->ghash = gcm_ghash_4bit
    [all...]
  /external/openssl/crypto/modes/
modes_lcl.h 113 void (*ghash)(u64 Xi[2],const u128 Htable[16],const u8 *inp,size_t len); member in struct:gcm128_context
gcm128.c 576 #define GHASH(ctx,in,len) gcm_ghash_4bit((ctx)->Xi.u,(ctx)->Htable,in,len)
680 # ifdef GHASH
681 # undef GHASH
682 # define GHASH(ctx,in,len) (*gcm_ghash_p)(ctx->Xi.u,ctx->Htable,in,len)
720 ctx->ghash = gcm_ghash_clmul;
732 ctx->ghash = gcm_ghash_4bit_mmx;
735 ctx->ghash = gcm_ghash_4bit_x86;
739 ctx->ghash = gcm_ghash_4bit;
744 ctx->ghash = gcm_ghash_neon;
748 ctx->ghash = gcm_ghash_4bit
    [all...]
  /external/chromium_org/crypto/
crypto.target.darwin-arm.mk 30 crypto/ghash.cc \
crypto.target.darwin-mips.mk 30 crypto/ghash.cc \
crypto.target.darwin-x86.mk 30 crypto/ghash.cc \
crypto.target.linux-arm.mk 30 crypto/ghash.cc \
crypto.target.linux-mips.mk 30 crypto/ghash.cc \
crypto.target.linux-x86.mk 30 crypto/ghash.cc \
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 557 crypto/modes/asm/ghash-armv4.S \
592 crypto/modes/asm/ghash-x86.S \
633 crypto/modes/asm/ghash-x86_64.S \
  /external/openssl/
Crypto-config.mk 557 crypto/modes/asm/ghash-armv4.S \
592 crypto/modes/asm/ghash-x86.S \
633 crypto/modes/asm/ghash-x86_64.S \
  /external/chromium_org/third_party/openssl/
openssl.target.darwin-arm.mk 574 third_party/openssl/openssl/crypto/modes/asm/ghash-armv4.S \
    [all...]
openssl.target.darwin-x86.mk 576 third_party/openssl/openssl/crypto/modes/asm/ghash-x86.S \
    [all...]
openssl.target.linux-arm.mk 574 third_party/openssl/openssl/crypto/modes/asm/ghash-armv4.S \
    [all...]
openssl.target.linux-x86.mk 576 third_party/openssl/openssl/crypto/modes/asm/ghash-x86.S \
    [all...]

Completed in 1242 milliseconds