mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
crypto: n2 - Remove cfb
Remove the unused CFB implementation. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
63340c481b
commit
66c465c6e7
@ -1121,19 +1121,6 @@ static const struct n2_skcipher_tmpl skcipher_tmpls[] = {
|
||||
.decrypt = n2_decrypt_chaining,
|
||||
},
|
||||
},
|
||||
{ .name = "cfb(des)",
|
||||
.drv_name = "cfb-des",
|
||||
.block_size = DES_BLOCK_SIZE,
|
||||
.enc_type = (ENC_TYPE_ALG_DES |
|
||||
ENC_TYPE_CHAINING_CFB),
|
||||
.skcipher = {
|
||||
.min_keysize = DES_KEY_SIZE,
|
||||
.max_keysize = DES_KEY_SIZE,
|
||||
.setkey = n2_des_setkey,
|
||||
.encrypt = n2_encrypt_chaining,
|
||||
.decrypt = n2_decrypt_chaining,
|
||||
},
|
||||
},
|
||||
|
||||
/* 3DES: ECB CBC and CFB are supported */
|
||||
{ .name = "ecb(des3_ede)",
|
||||
@ -1163,19 +1150,7 @@ static const struct n2_skcipher_tmpl skcipher_tmpls[] = {
|
||||
.decrypt = n2_decrypt_chaining,
|
||||
},
|
||||
},
|
||||
{ .name = "cfb(des3_ede)",
|
||||
.drv_name = "cfb-3des",
|
||||
.block_size = DES_BLOCK_SIZE,
|
||||
.enc_type = (ENC_TYPE_ALG_3DES |
|
||||
ENC_TYPE_CHAINING_CFB),
|
||||
.skcipher = {
|
||||
.min_keysize = 3 * DES_KEY_SIZE,
|
||||
.max_keysize = 3 * DES_KEY_SIZE,
|
||||
.setkey = n2_3des_setkey,
|
||||
.encrypt = n2_encrypt_chaining,
|
||||
.decrypt = n2_decrypt_chaining,
|
||||
},
|
||||
},
|
||||
|
||||
/* AES: ECB CBC and CTR are supported */
|
||||
{ .name = "ecb(aes)",
|
||||
.drv_name = "ecb-aes",
|
||||
|
Loading…
Reference in New Issue
Block a user