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

1 2

  /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 11 #include "crypto/ghash.h"
189 crypto::GaloisHash ghash(ghash_key);
190 ghash.UpdateAdditional(gcm_params->pAAD, gcm_params->ulAADLen);
191 ghash.UpdateCiphertext(enc, output_len);
193 ghash.Finish(auth_tag, Aes128Gcm12Decrypter::kAuthTagSize);
aes_128_gcm_12_encrypter_nss.cc 11 #include "crypto/ghash.h"
195 crypto::GaloisHash ghash(ghash_key);
196 ghash.UpdateAdditional(gcm_params->pAAD, gcm_params->ulAADLen);
197 ghash.UpdateCiphertext(out, output_len);
198 ghash.Finish(out + output_len, Aes128Gcm12Encrypter::kAuthTagSize);
  /external/chromium_org/third_party/boringssl/src/crypto/modes/
gcm.c 312 #define GHASH(ctx, in, len) gcm_ghash_4bit((ctx)->Xi.u, (ctx)->Htable, in, len)
365 #ifdef GHASH
366 #undef GHASH
367 #define GHASH(ctx, in, len) (*gcm_ghash_p)(ctx->Xi.u, ctx->Htable, in, len)
414 ctx->ghash = gcm_ghash_avx;
418 ctx->ghash = gcm_ghash_clmul;
426 ctx->ghash = gcm_ghash_4bit_mmx;
429 ctx->ghash = gcm_ghash_4bit_x86;
433 ctx->ghash = gcm_ghash_4bit;
439 ctx->ghash = gcm_ghash_neon
    [all...]
internal.h 165 void (*ghash)(uint64_t Xi[2], const u128 Htable[16], const uint8_t *inp, member in struct:gcm128_context
  /external/openssl/crypto/modes/
modes_lcl.h 110 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)
688 # ifdef GHASH
689 # undef GHASH
690 # define GHASH(ctx,in,len) (*gcm_ghash_p)(ctx->Xi.u,ctx->Htable,in,len)
728 ctx->ghash = gcm_ghash_clmul;
740 ctx->ghash = gcm_ghash_4bit_mmx;
743 ctx->ghash = gcm_ghash_4bit_x86;
747 ctx->ghash = gcm_ghash_4bit;
754 ctx->ghash = gcm_ghash_v8;
761 ctx->ghash = gcm_ghash_neon
    [all...]
  /external/openssl/
import_openssl.sh 521 gen_asm_arm crypto/modes/asm/ghash-armv4.pl
550 gen_asm_x86 crypto/modes/asm/ghash-x86.pl
564 gen_asm_x86_64 crypto/modes/asm/ghash-x86_64.pl
Crypto-config-host.mk 564 crypto/modes/asm/ghash-armv4.S \
623 crypto/modes/asm/ghash-x86.S \
666 crypto/modes/asm/ghash-x86_64.S \
Crypto-config-target.mk 564 crypto/modes/asm/ghash-armv4.S \
623 crypto/modes/asm/ghash-x86.S \
666 crypto/modes/asm/ghash-x86_64.S \
  /external/chromium_org/crypto/
crypto.target.darwin-arm.mk 30 crypto/ghash.cc \
crypto.target.darwin-arm64.mk 30 crypto/ghash.cc \
crypto.target.darwin-mips.mk 30 crypto/ghash.cc \
crypto.target.darwin-mips64.mk 30 crypto/ghash.cc \
crypto.target.darwin-x86.mk 30 crypto/ghash.cc \
crypto.target.darwin-x86_64.mk 30 crypto/ghash.cc \
crypto.target.linux-arm.mk 30 crypto/ghash.cc \
crypto.target.linux-arm64.mk 30 crypto/ghash.cc \
crypto.target.linux-mips.mk 30 crypto/ghash.cc \
crypto.target.linux-mips64.mk 30 crypto/ghash.cc \
crypto.target.linux-x86.mk 30 crypto/ghash.cc \
crypto.target.linux-x86_64.mk 30 crypto/ghash.cc \
  /external/chromium_org/third_party/boringssl/src/crypto/modes/asm/
ghash-armv4.pl 12 # The module implements "4-bit" GCM GHASH function and underlying
454 @ equivalent of reduction_avx from ghash-x86_64.pl
487 .asciz "GHASH for ARMv4/NEON, CRYPTOGAMS by <appro\@openssl.org>"
  /external/openssl/crypto/modes/asm/
ghash-armv4.pl 12 # The module implements "4-bit" GCM GHASH function and underlying
446 @ equivalent of reduction_avx from ghash-x86_64.pl
479 .asciz "GHASH for ARMv4/NEON, CRYPTOGAMS by <appro\@openssl.org>"
  /external/chromium_org/third_party/boringssl/linux-arm/crypto/modes/
ghash-armv4.S 499 @ equivalent of reduction_avx from ghash-x86_64.pl
529 .asciz "GHASH for ARMv4/NEON, CRYPTOGAMS by <appro@openssl.org>"

Completed in 2029 milliseconds

1 2