mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 20:51:03 +02:00
crypto: nx - remove stale comment referring to the blkcipher walk API
These drivers do not use either the deprecated blkcipher or the current skcipher walk API, so this comment must refer to a previous state of the driver that no longer exists. So drop the comments. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
committed by
Herbert Xu
parent
8160ee7e28
commit
809abaefa4
@@ -525,11 +525,6 @@ static int ccm_aes_nx_decrypt(struct aead_request *req)
|
|||||||
return ccm_nx_decrypt(req, req->iv, req->assoclen);
|
return ccm_nx_decrypt(req, req->iv, req->assoclen);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* tell the block cipher walk routines that this is a stream cipher by
|
|
||||||
* setting cra_blocksize to 1. Even using blkcipher_walk_virt_block
|
|
||||||
* during encrypt/decrypt doesn't solve this problem, because it calls
|
|
||||||
* blkcipher_walk_done under the covers, which doesn't use walk->blocksize,
|
|
||||||
* but instead uses this tfm->blocksize. */
|
|
||||||
struct aead_alg nx_ccm_aes_alg = {
|
struct aead_alg nx_ccm_aes_alg = {
|
||||||
.base = {
|
.base = {
|
||||||
.cra_name = "ccm(aes)",
|
.cra_name = "ccm(aes)",
|
||||||
|
@@ -467,11 +467,6 @@ static int gcm4106_aes_nx_decrypt(struct aead_request *req)
|
|||||||
return gcm_aes_nx_crypt(req, 0, req->assoclen - 8);
|
return gcm_aes_nx_crypt(req, 0, req->assoclen - 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* tell the block cipher walk routines that this is a stream cipher by
|
|
||||||
* setting cra_blocksize to 1. Even using blkcipher_walk_virt_block
|
|
||||||
* during encrypt/decrypt doesn't solve this problem, because it calls
|
|
||||||
* blkcipher_walk_done under the covers, which doesn't use walk->blocksize,
|
|
||||||
* but instead uses this tfm->blocksize. */
|
|
||||||
struct aead_alg nx_gcm_aes_alg = {
|
struct aead_alg nx_gcm_aes_alg = {
|
||||||
.base = {
|
.base = {
|
||||||
.cra_name = "gcm(aes)",
|
.cra_name = "gcm(aes)",
|
||||||
|
Reference in New Issue
Block a user