Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: ahash - improve file comment

Improve the file comment for crypto/ahash.c.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Eric Biggers and committed by
Herbert Xu
4d707a47 c2435e81

+6 -2
+6 -2
crypto/ahash.c
··· 2 2 /* 3 3 * Asynchronous Cryptographic Hash operations. 4 4 * 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. 7 11 * 8 12 * Copyright (c) 2008 Loc Ho <lho@amcc.com> 9 13 */