Home
last modified time | relevance | path

Searched refs:gf128 (Results 1 – 3 of 3) sorted by relevance

/linux/crypto/
H A Dghash-generic.c64 if (ctx->gf128) in ghash_setkey()
65 gf128mul_free_4k(ctx->gf128); in ghash_setkey()
69 ctx->gf128 = gf128mul_init_4k_lle(&k); in ghash_setkey()
72 if (!ctx->gf128) in ghash_setkey()
96 gf128mul_4k_lle((be128 *)dst, ctx->gf128); in ghash_update()
101 gf128mul_4k_lle((be128 *)dst, ctx->gf128); in ghash_update()
125 gf128mul_4k_lle((be128 *)dst, ctx->gf128); in ghash_flush()
146 if (ctx->gf128) in ghash_exit_tfm()
147 gf128mul_free_4k(ctx->gf128); in ghash_exit_tfm()
H A Dpolyval-generic.c58 struct gf128mul_4k *gf128; member
128 gf128mul_free_4k(ctx->gf128); in polyval_setkey()
134 ctx->gf128 = gf128mul_init_4k_lle(&k); in polyval_setkey()
137 if (!ctx->gf128) in polyval_setkey()
172 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_update()
178 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_update()
199 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_final()
208 gf128mul_free_4k(ctx->gf128); in polyval_exit_tfm()
/linux/include/crypto/
H A Dghash.h16 struct gf128mul_4k *gf128; member