Lines Matching refs:sctx
49 static inline void sm3_init(struct sm3_state *sctx)
51 sctx->state[0] = SM3_IVA;
52 sctx->state[1] = SM3_IVB;
53 sctx->state[2] = SM3_IVC;
54 sctx->state[3] = SM3_IVD;
55 sctx->state[4] = SM3_IVE;
56 sctx->state[5] = SM3_IVF;
57 sctx->state[6] = SM3_IVG;
58 sctx->state[7] = SM3_IVH;
59 sctx->count = 0;
62 void sm3_block_generic(struct sm3_state *sctx, u8 const *data, int blocks);