Skip to content

Commit 112cbfe

Browse files
committed
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>
1 parent 0a6a28f commit 112cbfe

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)