summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2019-11-29 10:16:48 -0800
committerHerbert Xu <herbert@gondor.apana.org.au>2019-12-11 16:36:56 +0800
commit398eef92fe4a777e75c4826d6cea2a274f982af3 (patch)
treef777ea8729a4cc88bff6943b6c86f1e2aba45b71
parent1643e8e6f19b8ac65edf01ced630f64b28bf1fcd (diff)
downloadlinux-crypto-398eef92fe4a777e75c4826d6cea2a274f982af3.tar.gz
linux-crypto-398eef92fe4a777e75c4826d6cea2a274f982af3.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>
-rw-r--r--crypto/api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/api.c b/crypto/api.c
index 55bca28d..4d3d1387 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.
*/