1 // SPDX-License-Identifier: GPL-2.0-only
3 * SM3 secure hash, as specified by OSCCA GM/T 0004-2012 SM3 and
4 * described at https://tools.ietf.org/html/draft-shen-sm3-hash-01
6 * Copyright (C) 2017 ARM Limited or its affiliates.
7 * Written by Gilad Ben-Yossef <gilad@benyossef.com>
10 #include <crypto/internal/hash.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <crypto/sm3.h>
16 #include <crypto/sm3_base.h>
17 #include <linux/bitops.h>
18 #include <asm/byteorder.h>
19 #include <asm/unaligned.h>
21 const u8 sm3_zero_message_hash
[SM3_DIGEST_SIZE
] = {
22 0x1A, 0xB2, 0x1D, 0x83, 0x55, 0xCF, 0xA1, 0x7F,
23 0x8e, 0x61, 0x19, 0x48, 0x31, 0xE8, 0x1A, 0x8F,
24 0x22, 0xBE, 0xC8, 0xC7, 0x28, 0xFE, 0xFB, 0x74,
25 0x7E, 0xD0, 0x35, 0xEB, 0x50, 0x82, 0xAA, 0x2B
27 EXPORT_SYMBOL_GPL(sm3_zero_message_hash
);
29 static inline u32
p0(u32 x
)
31 return x
^ rol32(x
, 9) ^ rol32(x
, 17);
34 static inline u32
p1(u32 x
)
36 return x
^ rol32(x
, 15) ^ rol32(x
, 23);
39 static inline u32
ff(unsigned int n
, u32 a
, u32 b
, u32 c
)
41 return (n
< 16) ? (a
^ b
^ c
) : ((a
& b
) | (a
& c
) | (b
& c
));
44 static inline u32
gg(unsigned int n
, u32 e
, u32 f
, u32 g
)
46 return (n
< 16) ? (e
^ f
^ g
) : ((e
& f
) | ((~e
) & g
));
49 static inline u32
t(unsigned int n
)
51 return (n
< 16) ? SM3_T1
: SM3_T2
;
54 static void sm3_expand(u32
*t
, u32
*w
, u32
*wt
)
60 for (i
= 0; i
<= 15; i
++)
61 w
[i
] = get_unaligned_be32((__u32
*)t
+ i
);
63 for (i
= 16; i
<= 67; i
++) {
64 tmp
= w
[i
- 16] ^ w
[i
- 9] ^ rol32(w
[i
- 3], 15);
65 w
[i
] = p1(tmp
) ^ (rol32(w
[i
- 13], 7)) ^ w
[i
- 6];
68 for (i
= 0; i
<= 63; i
++)
69 wt
[i
] = w
[i
] ^ w
[i
+ 4];
72 static void sm3_compress(u32
*w
, u32
*wt
, u32
*m
)
78 u32 a
, b
, c
, d
, e
, f
, g
, h
;
90 for (i
= 0; i
<= 63; i
++) {
92 ss1
= rol32((rol32(a
, 12) + e
+ rol32(t(i
), i
& 31)), 7);
94 ss2
= ss1
^ rol32(a
, 12);
96 tt1
= ff(i
, a
, b
, c
) + d
+ ss2
+ *wt
;
99 tt2
= gg(i
, e
, f
, g
) + h
+ ss1
+ *w
;
121 a
= b
= c
= d
= e
= f
= g
= h
= ss1
= ss2
= tt1
= tt2
= 0;
124 static void sm3_transform(struct sm3_state
*sst
, u8
const *src
)
129 sm3_expand((u32
*)src
, w
, wt
);
130 sm3_compress(w
, wt
, sst
->state
);
132 memzero_explicit(w
, sizeof(w
));
133 memzero_explicit(wt
, sizeof(wt
));
136 static void sm3_generic_block_fn(struct sm3_state
*sst
, u8
const *src
,
140 sm3_transform(sst
, src
);
141 src
+= SM3_BLOCK_SIZE
;
145 int crypto_sm3_update(struct shash_desc
*desc
, const u8
*data
,
148 return sm3_base_do_update(desc
, data
, len
, sm3_generic_block_fn
);
150 EXPORT_SYMBOL(crypto_sm3_update
);
152 static int sm3_final(struct shash_desc
*desc
, u8
*out
)
154 sm3_base_do_finalize(desc
, sm3_generic_block_fn
);
155 return sm3_base_finish(desc
, out
);
158 int crypto_sm3_finup(struct shash_desc
*desc
, const u8
*data
,
159 unsigned int len
, u8
*hash
)
161 sm3_base_do_update(desc
, data
, len
, sm3_generic_block_fn
);
162 return sm3_final(desc
, hash
);
164 EXPORT_SYMBOL(crypto_sm3_finup
);
166 static struct shash_alg sm3_alg
= {
167 .digestsize
= SM3_DIGEST_SIZE
,
168 .init
= sm3_base_init
,
169 .update
= crypto_sm3_update
,
171 .finup
= crypto_sm3_finup
,
172 .descsize
= sizeof(struct sm3_state
),
175 .cra_driver_name
= "sm3-generic",
176 .cra_blocksize
= SM3_BLOCK_SIZE
,
177 .cra_module
= THIS_MODULE
,
181 static int __init
sm3_generic_mod_init(void)
183 return crypto_register_shash(&sm3_alg
);
186 static void __exit
sm3_generic_mod_fini(void)
188 crypto_unregister_shash(&sm3_alg
);
191 subsys_initcall(sm3_generic_mod_init
);
192 module_exit(sm3_generic_mod_fini
);
194 MODULE_LICENSE("GPL v2");
195 MODULE_DESCRIPTION("SM3 Secure Hash Algorithm");
197 MODULE_ALIAS_CRYPTO("sm3");
198 MODULE_ALIAS_CRYPTO("sm3-generic");