Lines Matching +full:3 +full:- +full:2017
1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2017 ARM Limited or its affiliates.
6 * Copyright (C) 2017 Gilad Ben-Yossef <gilad@benyossef.com>
39 * Stand-alone implementation of the SM3 algorithm. It is designed to
43 * amounts of data as those APIs may be hw-accelerated.
50 sctx->state[0] = SM3_IVA; in sm3_init()
51 sctx->state[1] = SM3_IVB; in sm3_init()
52 sctx->state[2] = SM3_IVC; in sm3_init()
53 sctx->state[3] = SM3_IVD; in sm3_init()
54 sctx->state[4] = SM3_IVE; in sm3_init()
55 sctx->state[5] = SM3_IVF; in sm3_init()
56 sctx->state[6] = SM3_IVG; in sm3_init()
57 sctx->state[7] = SM3_IVH; in sm3_init()
58 sctx->count = 0; in sm3_init()