Skip to content

Commit e93c608

Browse files
ryan-wannerherbertx
authored andcommitted
crypto: atmel-aes - Match cfb block size with generic implementation
Change blocksize to match the cfb(aes) generic implementation. Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
1 parent 2fbe482 commit e93c608

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/crypto/atmel-aes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,7 @@ static struct skcipher_alg aes_algs[] = {
13351335
{
13361336
.base.cra_name = "cfb(aes)",
13371337
.base.cra_driver_name = "atmel-cfb-aes",
1338-
.base.cra_blocksize = AES_BLOCK_SIZE,
1338+
.base.cra_blocksize = 1,
13391339
.base.cra_ctxsize = sizeof(struct atmel_aes_ctx),
13401340

13411341
.init = atmel_aes_init_tfm,

0 commit comments

Comments
 (0)