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

  /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...]
  /external/openssl/crypto/modes/
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...]

Completed in 593 milliseconds