diff options
author | Eric Biggers | 2019-11-29 10:16:48 -0800 |
---|---|---|
committer | Herbert Xu | 2019-12-11 16:36:56 +0800 |
commit | 0a940d4e27658a545884351c46a70b132272a38d (patch) | |
tree | 84f712669e5615699cae0eb89f8ce144059670aa /crypto/api.c | |
parent | 8e8c778d9ed4fdc5a9af108c7023bfb640a673f2 (diff) |
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. */ |