Skip to content

Commit 4d707a4

Browse files
ebiggersherbertx
authored andcommitted
crypto: ahash - improve file comment
Improve the file comment for crypto/ahash.c. Signed-off-by: Eric Biggers <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent c2435e8 commit 4d707a4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

crypto/ahash.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22
/*
33
* Asynchronous Cryptographic Hash operations.
44
*
5-
* This is the asynchronous version of hash.c with notification of
6-
* completion via a callback.
5+
* This is the implementation of the ahash (asynchronous hash) API. It differs
6+
* from shash (synchronous hash) in that ahash supports asynchronous operations,
7+
* and it hashes data from scatterlists instead of virtually addressed buffers.
8+
*
9+
* The ahash API provides access to both ahash and shash algorithms. The shash
10+
* API only provides access to shash algorithms.
711
*
812
* Copyright (c) 2008 Loc Ho <[email protected]>
913
*/

0 commit comments

Comments
 (0)