HomeSort by: relevance | last modified time | path
    Searched defs:GHASH (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/modes/
gcm128.c 331 #define GHASH(ctx, in, len) ctx->funcs.ghash((ctx)->Xi.u, (ctx)->Htable, in, len)
440 ctx->ghash = gcm_ghash_4bit;
442 ctx->ghash = NULL;
452 ctx->ghash = gcm_ghash_avx;
456 ctx->ghash = gcm_ghash_clmul;
466 ctx->ghash = gcm_ghash_4bit_mmx;
472 ctx->ghash = gcm_ghash_4bit_mmx;
477 ctx->ghash = gcm_ghash_4bit_x86;
482 ctx->ghash = gcm_ghash_4bit
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
gcm128.c 551 # define GHASH(ctx,in,len) gcm_ghash_4bit((ctx)->Xi.u,(ctx)->Htable,in,len)
701 # ifdef GHASH
702 # undef GHASH
703 # define GHASH(ctx,in,len) (*gcm_ghash_p)(ctx->Xi.u,ctx->Htable,in,len)
734 # if defined(GHASH)
735 # define CTX__GHASH(f) (ctx->ghash = (f))
737 # define CTX__GHASH(f) (ctx->ghash = NULL)
916 # ifdef GHASH
918 const u8 *inp, size_t len) = ctx->ghash;
944 #ifdef GHASH
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/modes/
gcm128.c 561 # define GHASH(ctx,in,len) gcm_ghash_4bit((ctx)->Xi.u,(ctx)->Htable,in,len)
715 # ifdef GHASH
716 # undef GHASH
717 # define GHASH(ctx,in,len) (*gcm_ghash_p)(ctx->Xi.u,ctx->Htable,in,len)
751 # if defined(GHASH)
752 # define CTX__GHASH(f) (ctx->ghash = (f))
754 # define CTX__GHASH(f) (ctx->ghash = NULL)
936 # ifdef GHASH
938 const u8 *inp, size_t len) = ctx->ghash;
964 #ifdef GHASH
    [all...]

Completed in 25 milliseconds