Searched refs:GCM_MUL (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/third_party/boringssl/src/crypto/modes/ |
D | gcm.c | 310 #define GCM_MUL(ctx, Xi) gcm_gmult_4bit(ctx->Xi.u, ctx->Htable) macro 363 #undef GCM_MUL 364 #define GCM_MUL(ctx, Xi) (*gcm_gmult_p)(ctx->Xi.u, ctx->Htable) macro 483 GCM_MUL(ctx, Yi); in CRYPTO_gcm128_setiv() 491 GCM_MUL(ctx, Yi); in CRYPTO_gcm128_setiv() 511 GCM_MUL(ctx, Yi); in CRYPTO_gcm128_setiv() 559 GCM_MUL(ctx, Xi); in CRYPTO_gcm128_aad() 577 GCM_MUL(ctx, Xi); in CRYPTO_gcm128_aad() 620 GCM_MUL(ctx, Xi); in CRYPTO_gcm128_encrypt() 638 GCM_MUL(ctx, Xi); in CRYPTO_gcm128_encrypt() [all …]
|
/external/openssl/crypto/modes/ |
D | gcm128.c | 252 #define GCM_MUL(ctx,Xi) gcm_gmult_8bit(ctx->Xi.u,ctx->Htable) macro 574 #define GCM_MUL(ctx,Xi) gcm_gmult_4bit(ctx->Xi.u,ctx->Htable) macro 641 #define GCM_MUL(ctx,Xi) gcm_gmult_1bit(ctx->Xi.u,ctx->H.u) macro 686 # undef GCM_MUL 687 # define GCM_MUL(ctx,Xi) (*gcm_gmult_p)(ctx->Xi.u,ctx->Htable) macro 803 GCM_MUL(ctx,Yi); 809 GCM_MUL(ctx,Yi); 829 GCM_MUL(ctx,Yi); 880 if (n==0) GCM_MUL(ctx,Xi); 896 GCM_MUL(ctx,Xi); [all …]
|