瀏覽代碼

crypto: atmel-aes - correct block size of cfb8 mode

The block size of aes cfb8 mode shoule be 8 bit.

Signed-off-by: Leilei Zhao <leilei.zhao@atmel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Leilei Zhao 11 年之前
父節點
當前提交
e5d8c961c5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/crypto/atmel-aes.c

+ 1 - 1
drivers/crypto/atmel-aes.c

@@ -1069,7 +1069,7 @@ static struct crypto_alg aes_algs[] = {
 	.cra_driver_name	= "atmel-cfb8-aes",
 	.cra_driver_name	= "atmel-cfb8-aes",
 	.cra_priority		= 100,
 	.cra_priority		= 100,
 	.cra_flags		= CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC,
 	.cra_flags		= CRYPTO_ALG_TYPE_ABLKCIPHER | CRYPTO_ALG_ASYNC,
-	.cra_blocksize		= CFB64_BLOCK_SIZE,
+	.cra_blocksize		= CFB8_BLOCK_SIZE,
 	.cra_ctxsize		= sizeof(struct atmel_aes_ctx),
 	.cra_ctxsize		= sizeof(struct atmel_aes_ctx),
 	.cra_alignmask		= 0x0,
 	.cra_alignmask		= 0x0,
 	.cra_type		= &crypto_ablkcipher_type,
 	.cra_type		= &crypto_ablkcipher_type,