diff options
author | Eric Biggers <ebiggers@google.com> | 2019-11-29 19:16:48 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-12-11 09:36:56 +0100 |
commit | 0a940d4e27658a545884351c46a70b132272a38d (patch) | |
tree | 84f712669e5615699cae0eb89f8ce144059670aa /crypto/api.c | |
parent | crypto: hisilicon - select CRYPTO_SKCIPHER, not CRYPTO_BLKCIPHER (diff) | |
download | linux-0a940d4e27658a545884351c46a70b132272a38d.tar.xz linux-0a940d4e27658a545884351c46a70b132272a38d.zip |
crypto: api - remove another reference to blkcipher
Update a comment to refer to crypto_alloc_skcipher() rather than
crypto_alloc_blkcipher() (the latter having been removed).
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/api.c')
-rw-r--r-- | crypto/api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/api.c b/crypto/api.c index 55bca28df92d..4d3d13872fac 100644 --- a/crypto/api.c +++ b/crypto/api.c @@ -516,7 +516,7 @@ EXPORT_SYMBOL_GPL(crypto_find_alg); * * The returned transform is of a non-determinate type. Most people * should use one of the more specific allocation functions such as - * crypto_alloc_blkcipher. + * crypto_alloc_skcipher(). * * In case of error the return value is an error pointer. */ |