Symbol: SM3_DIGEST_SIZE
crypto/sm3.c
63
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/ccree/cc_hash.c
1761
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/ccree/cc_hash.c
1762
.statesize = CC_STATE_SIZE(SM3_DIGEST_SIZE),
drivers/crypto/ccree/cc_hash.c
1767
.inter_digestsize = SM3_DIGEST_SIZE,
drivers/crypto/inside-secure/safexcel_cipher.c
3452
ctx->state_sz = SM3_DIGEST_SIZE;
drivers/crypto/inside-secure/safexcel_cipher.c
3465
.maxauthsize = SM3_DIGEST_SIZE,
drivers/crypto/inside-secure/safexcel_cipher.c
3536
.maxauthsize = SM3_DIGEST_SIZE,
drivers/crypto/inside-secure/safexcel_hash.c
2151
req->state_sz = SM3_DIGEST_SIZE;
drivers/crypto/inside-secure/safexcel_hash.c
2152
req->digest_sz = SM3_DIGEST_SIZE;
drivers/crypto/inside-secure/safexcel_hash.c
2180
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/inside-secure/safexcel_hash.c
2203
SM3_DIGEST_SIZE);
drivers/crypto/inside-secure/safexcel_hash.c
2214
memcpy(req->state, &ctx->base.ipad, SM3_DIGEST_SIZE);
drivers/crypto/inside-secure/safexcel_hash.c
2221
req->state_sz = SM3_DIGEST_SIZE;
drivers/crypto/inside-secure/safexcel_hash.c
2222
req->digest_sz = SM3_DIGEST_SIZE;
drivers/crypto/inside-secure/safexcel_hash.c
2252
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/inside-secure/safexcel_hash.c
798
EIP197_SM3_ZEROM_HASH, SM3_DIGEST_SIZE);
drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
1005
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
1031
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/starfive/jh7110-hash.c
797
.digestsize = SM3_DIGEST_SIZE,
drivers/crypto/starfive/jh7110-hash.c
826
.digestsize = SM3_DIGEST_SIZE,
include/crypto/sm3.h
29
u32 h[SM3_DIGEST_SIZE / 4];
include/crypto/sm3.h
75
void sm3_final(struct sm3_ctx *ctx, u8 out[at_least SM3_DIGEST_SIZE]);
include/crypto/sm3.h
85
void sm3(const u8 *data, size_t len, u8 out[at_least SM3_DIGEST_SIZE]);
lib/crypto/sm3.c
239
static void __sm3_final(struct sm3_ctx *ctx, u8 out[SM3_DIGEST_SIZE])
lib/crypto/sm3.c
254
for (size_t i = 0; i < SM3_DIGEST_SIZE; i += 4)
lib/crypto/sm3.c
258
void sm3_final(struct sm3_ctx *ctx, u8 out[SM3_DIGEST_SIZE])
lib/crypto/sm3.c
265
void sm3(const u8 *data, size_t len, u8 out[SM3_DIGEST_SIZE])
lib/crypto/tests/sm3-testvecs.h
226
static const u8 hash_testvec_consolidated[SM3_DIGEST_SIZE] = {
lib/crypto/tests/sm3-testvecs.h
6
u8 digest[SM3_DIGEST_SIZE];
lib/crypto/tests/sm3_kunit.c
10
#define HASH_SIZE SM3_DIGEST_SIZE