mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
crypto: inside-secure - Add support for the cfb(sm4) skcipher
This patch adds support for SM4 in CFB mode, i.e. skcipher cfb(sm4). changes since v1: - nothing Signed-off-by: Pascal van Leeuwen <pvanleeuwen@verimatrix.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
a06b15b2b4
commit
7468ab22d7
@ -1181,6 +1181,7 @@ static struct safexcel_alg_template *safexcel_algs[] = {
|
||||
&safexcel_alg_ecb_sm4,
|
||||
&safexcel_alg_cbc_sm4,
|
||||
&safexcel_alg_ofb_sm4,
|
||||
&safexcel_alg_cfb_sm4,
|
||||
};
|
||||
|
||||
static int safexcel_register_algorithms(struct safexcel_crypto_priv *priv)
|
||||
|
@ -882,5 +882,6 @@ extern struct safexcel_alg_template safexcel_alg_hmac_sm3;
|
||||
extern struct safexcel_alg_template safexcel_alg_ecb_sm4;
|
||||
extern struct safexcel_alg_template safexcel_alg_cbc_sm4;
|
||||
extern struct safexcel_alg_template safexcel_alg_ofb_sm4;
|
||||
extern struct safexcel_alg_template safexcel_alg_cfb_sm4;
|
||||
|
||||
#endif
|
||||
|
@ -2779,3 +2779,39 @@ struct safexcel_alg_template safexcel_alg_ofb_sm4 = {
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static int safexcel_skcipher_sm4_cfb_cra_init(struct crypto_tfm *tfm)
|
||||
{
|
||||
struct safexcel_cipher_ctx *ctx = crypto_tfm_ctx(tfm);
|
||||
|
||||
safexcel_skcipher_cra_init(tfm);
|
||||
ctx->alg = SAFEXCEL_SM4;
|
||||
ctx->mode = CONTEXT_CONTROL_CRYPTO_MODE_CFB;
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct safexcel_alg_template safexcel_alg_cfb_sm4 = {
|
||||
.type = SAFEXCEL_ALG_TYPE_SKCIPHER,
|
||||
.algo_mask = SAFEXCEL_ALG_SM4 | SAFEXCEL_ALG_AES_XFB,
|
||||
.alg.skcipher = {
|
||||
.setkey = safexcel_skcipher_sm4_setkey,
|
||||
.encrypt = safexcel_encrypt,
|
||||
.decrypt = safexcel_decrypt,
|
||||
.min_keysize = SM4_KEY_SIZE,
|
||||
.max_keysize = SM4_KEY_SIZE,
|
||||
.ivsize = SM4_BLOCK_SIZE,
|
||||
.base = {
|
||||
.cra_name = "cfb(sm4)",
|
||||
.cra_driver_name = "safexcel-cfb-sm4",
|
||||
.cra_priority = SAFEXCEL_CRA_PRIORITY,
|
||||
.cra_flags = CRYPTO_ALG_ASYNC |
|
||||
CRYPTO_ALG_KERN_DRIVER_ONLY,
|
||||
.cra_blocksize = 1,
|
||||
.cra_ctxsize = sizeof(struct safexcel_cipher_ctx),
|
||||
.cra_alignmask = 0,
|
||||
.cra_init = safexcel_skcipher_sm4_cfb_cra_init,
|
||||
.cra_exit = safexcel_skcipher_cra_exit,
|
||||
.cra_module = THIS_MODULE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user