diff options
author | Jussi Kivilinna <jussi.kivilinna@mbnet.fi> | 2011-10-10 05:32:15 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-10-21 08:28:57 -0400 |
commit | a516ebafdf231702b7461cab562c7fe328ef972b (patch) | |
tree | c45538543f4965d7dd3f4e36c3502dfe376c01c7 /arch/x86 | |
parent | ac4385d250d83fae0148607d9fb694aa6e90ab9c (diff) |
crypto: blowfish-x86_64 - fix ctr blocksize to 1
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/crypto/blowfish_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/blowfish_glue.c b/arch/x86/crypto/blowfish_glue.c index 2568a7b71630..b05aa163d55a 100644 --- a/arch/x86/crypto/blowfish_glue.c +++ b/arch/x86/crypto/blowfish_glue.c | |||
@@ -428,7 +428,7 @@ static struct crypto_alg blk_ctr_alg = { | |||
428 | .cra_driver_name = "ctr-blowfish-asm", | 428 | .cra_driver_name = "ctr-blowfish-asm", |
429 | .cra_priority = 300, | 429 | .cra_priority = 300, |
430 | .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER, | 430 | .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER, |
431 | .cra_blocksize = BF_BLOCK_SIZE, | 431 | .cra_blocksize = 1, |
432 | .cra_ctxsize = sizeof(struct bf_ctx), | 432 | .cra_ctxsize = sizeof(struct bf_ctx), |
433 | .cra_alignmask = 0, | 433 | .cra_alignmask = 0, |
434 | .cra_type = &crypto_blkcipher_type, | 434 | .cra_type = &crypto_blkcipher_type, |