Commit 4d707a47 authored by Eric Biggers's avatar Eric Biggers Committed by Herbert Xu

crypto: ahash - improve file comment

Improve the file comment for crypto/ahash.c.
Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c2435e81
...@@ -2,8 +2,12 @@ ...@@ -2,8 +2,12 @@
/* /*
* Asynchronous Cryptographic Hash operations. * Asynchronous Cryptographic Hash operations.
* *
* This is the asynchronous version of hash.c with notification of * This is the implementation of the ahash (asynchronous hash) API. It differs
* completion via a callback. * from shash (synchronous hash) in that ahash supports asynchronous operations,
* and it hashes data from scatterlists instead of virtually addressed buffers.
*
* The ahash API provides access to both ahash and shash algorithms. The shash
* API only provides access to shash algorithms.
* *
* Copyright (c) 2008 Loc Ho <lho@amcc.com> * Copyright (c) 2008 Loc Ho <lho@amcc.com>
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment