mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 01:34:00 +08:00
crypto: arch/x86 - cleanup - remove unneeded crypto_alg.cra_list initializations
Initialization of cra_list is currently mixed, most ciphers initialize this field and most shashes do not. Initialization however is not needed at all since cra_list is initialized/overwritten in __crypto_register_alg() with list_add(). Therefore perform cleanup to remove all unneeded initializations of this field in 'arch/x86/crypto/'. Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
77ec2e734d
commit
7af6c24568
@ -40,7 +40,6 @@ static struct crypto_alg aes_alg = {
|
|||||||
.cra_blocksize = AES_BLOCK_SIZE,
|
.cra_blocksize = AES_BLOCK_SIZE,
|
||||||
.cra_ctxsize = sizeof(struct crypto_aes_ctx),
|
.cra_ctxsize = sizeof(struct crypto_aes_ctx),
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(aes_alg.cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.cipher = {
|
.cipher = {
|
||||||
.cia_min_keysize = AES_MIN_KEY_SIZE,
|
.cia_min_keysize = AES_MIN_KEY_SIZE,
|
||||||
|
@ -1118,7 +1118,7 @@ MODULE_DEVICE_TABLE(x86cpu, aesni_cpu_id);
|
|||||||
|
|
||||||
static int __init aesni_init(void)
|
static int __init aesni_init(void)
|
||||||
{
|
{
|
||||||
int err, i;
|
int err;
|
||||||
|
|
||||||
if (!x86_match_cpu(aesni_cpu_id))
|
if (!x86_match_cpu(aesni_cpu_id))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
@ -1127,9 +1127,6 @@ static int __init aesni_init(void)
|
|||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(aesni_algs); i++)
|
|
||||||
INIT_LIST_HEAD(&aesni_algs[i].cra_list);
|
|
||||||
|
|
||||||
return crypto_register_algs(aesni_algs, ARRAY_SIZE(aesni_algs));
|
return crypto_register_algs(aesni_algs, ARRAY_SIZE(aesni_algs));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -367,7 +367,6 @@ static struct crypto_alg bf_algs[4] = { {
|
|||||||
.cra_ctxsize = sizeof(struct bf_ctx),
|
.cra_ctxsize = sizeof(struct bf_ctx),
|
||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(bf_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.cipher = {
|
.cipher = {
|
||||||
.cia_min_keysize = BF_MIN_KEY_SIZE,
|
.cia_min_keysize = BF_MIN_KEY_SIZE,
|
||||||
@ -387,7 +386,6 @@ static struct crypto_alg bf_algs[4] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(bf_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = BF_MIN_KEY_SIZE,
|
.min_keysize = BF_MIN_KEY_SIZE,
|
||||||
@ -407,7 +405,6 @@ static struct crypto_alg bf_algs[4] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(bf_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = BF_MIN_KEY_SIZE,
|
.min_keysize = BF_MIN_KEY_SIZE,
|
||||||
@ -428,7 +425,6 @@ static struct crypto_alg bf_algs[4] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(bf_algs[3].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = BF_MIN_KEY_SIZE,
|
.min_keysize = BF_MIN_KEY_SIZE,
|
||||||
|
@ -1601,7 +1601,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_ctxsize = sizeof(struct camellia_ctx),
|
.cra_ctxsize = sizeof(struct camellia_ctx),
|
||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.cipher = {
|
.cipher = {
|
||||||
.cia_min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
.cia_min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
||||||
@ -1621,7 +1620,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
||||||
@ -1641,7 +1639,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
||||||
@ -1662,7 +1659,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[3].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
.min_keysize = CAMELLIA_MIN_KEY_SIZE,
|
||||||
@ -1683,7 +1679,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[4].cra_list),
|
|
||||||
.cra_exit = lrw_exit_tfm,
|
.cra_exit = lrw_exit_tfm,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
@ -1707,7 +1702,6 @@ static struct crypto_alg camellia_algs[6] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(camellia_algs[5].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = CAMELLIA_MIN_KEY_SIZE * 2,
|
.min_keysize = CAMELLIA_MIN_KEY_SIZE * 2,
|
||||||
|
@ -150,7 +150,6 @@ static struct shash_alg ghash_alg = {
|
|||||||
.cra_blocksize = GHASH_BLOCK_SIZE,
|
.cra_blocksize = GHASH_BLOCK_SIZE,
|
||||||
.cra_ctxsize = sizeof(struct ghash_ctx),
|
.cra_ctxsize = sizeof(struct ghash_ctx),
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(ghash_alg.base.cra_list),
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -288,7 +287,6 @@ static struct ahash_alg ghash_async_alg = {
|
|||||||
.cra_blocksize = GHASH_BLOCK_SIZE,
|
.cra_blocksize = GHASH_BLOCK_SIZE,
|
||||||
.cra_type = &crypto_ahash_type,
|
.cra_type = &crypto_ahash_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(ghash_async_alg.halg.base.cra_list),
|
|
||||||
.cra_init = ghash_async_init_tfm,
|
.cra_init = ghash_async_init_tfm,
|
||||||
.cra_exit = ghash_async_exit_tfm,
|
.cra_exit = ghash_async_exit_tfm,
|
||||||
},
|
},
|
||||||
|
@ -97,7 +97,6 @@ static struct crypto_alg alg = {
|
|||||||
.cra_ctxsize = sizeof(struct salsa20_ctx),
|
.cra_ctxsize = sizeof(struct salsa20_ctx),
|
||||||
.cra_alignmask = 3,
|
.cra_alignmask = 3,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(alg.cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.setkey = setkey,
|
.setkey = setkey,
|
||||||
|
@ -390,7 +390,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -410,7 +409,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -430,7 +428,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -451,7 +448,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[3].cra_list),
|
|
||||||
.cra_exit = lrw_exit_tfm,
|
.cra_exit = lrw_exit_tfm,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
@ -475,7 +471,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[4].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE * 2,
|
.min_keysize = SERPENT_MIN_KEY_SIZE * 2,
|
||||||
@ -496,7 +491,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[5].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -518,7 +512,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[6].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -541,7 +534,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[7].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -565,7 +557,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[8].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -590,7 +581,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[9].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
|
@ -393,7 +393,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -413,7 +412,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -433,7 +431,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
.min_keysize = SERPENT_MIN_KEY_SIZE,
|
||||||
@ -454,7 +451,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[3].cra_list),
|
|
||||||
.cra_exit = lrw_exit_tfm,
|
.cra_exit = lrw_exit_tfm,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
@ -478,7 +474,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[4].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = SERPENT_MIN_KEY_SIZE * 2,
|
.min_keysize = SERPENT_MIN_KEY_SIZE * 2,
|
||||||
@ -499,7 +494,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[5].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -521,7 +515,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[6].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -544,7 +537,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[7].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -568,7 +560,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[8].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -593,7 +584,6 @@ static struct crypto_alg serpent_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(serpent_algs[9].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
|
@ -378,7 +378,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -398,7 +397,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -418,7 +416,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -439,7 +436,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[3].cra_list),
|
|
||||||
.cra_exit = lrw_twofish_exit_tfm,
|
.cra_exit = lrw_twofish_exit_tfm,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
@ -463,7 +459,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[4].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE * 2,
|
.min_keysize = TF_MIN_KEY_SIZE * 2,
|
||||||
@ -484,7 +479,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[5].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -506,7 +500,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[6].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -529,7 +522,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[7].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -553,7 +545,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[8].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
@ -578,7 +569,6 @@ static struct crypto_alg twofish_algs[10] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_ablkcipher_type,
|
.cra_type = &crypto_ablkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(twofish_algs[9].cra_list),
|
|
||||||
.cra_init = ablk_init,
|
.cra_init = ablk_init,
|
||||||
.cra_exit = ablk_exit,
|
.cra_exit = ablk_exit,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
|
@ -70,7 +70,6 @@ static struct crypto_alg alg = {
|
|||||||
.cra_ctxsize = sizeof(struct twofish_ctx),
|
.cra_ctxsize = sizeof(struct twofish_ctx),
|
||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(alg.cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.cipher = {
|
.cipher = {
|
||||||
.cia_min_keysize = TF_MIN_KEY_SIZE,
|
.cia_min_keysize = TF_MIN_KEY_SIZE,
|
||||||
|
@ -342,7 +342,6 @@ static struct crypto_alg tf_algs[5] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(tf_algs[0].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -362,7 +361,6 @@ static struct crypto_alg tf_algs[5] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(tf_algs[1].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -383,7 +381,6 @@ static struct crypto_alg tf_algs[5] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(tf_algs[2].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE,
|
.min_keysize = TF_MIN_KEY_SIZE,
|
||||||
@ -404,7 +401,6 @@ static struct crypto_alg tf_algs[5] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(tf_algs[3].cra_list),
|
|
||||||
.cra_exit = lrw_twofish_exit_tfm,
|
.cra_exit = lrw_twofish_exit_tfm,
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
@ -426,7 +422,6 @@ static struct crypto_alg tf_algs[5] = { {
|
|||||||
.cra_alignmask = 0,
|
.cra_alignmask = 0,
|
||||||
.cra_type = &crypto_blkcipher_type,
|
.cra_type = &crypto_blkcipher_type,
|
||||||
.cra_module = THIS_MODULE,
|
.cra_module = THIS_MODULE,
|
||||||
.cra_list = LIST_HEAD_INIT(tf_algs[4].cra_list),
|
|
||||||
.cra_u = {
|
.cra_u = {
|
||||||
.blkcipher = {
|
.blkcipher = {
|
||||||
.min_keysize = TF_MIN_KEY_SIZE * 2,
|
.min_keysize = TF_MIN_KEY_SIZE * 2,
|
||||||
|
Loading…
Reference in New Issue
Block a user