diff options
author | Corentin Labbe <clabbe@baylibre.com> | 2018-12-13 08:36:38 +0000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-12-23 11:52:44 +0800 |
commit | bfad6cb3f8295559216690e1eb9c99003a79b3a0 (patch) | |
tree | 4521f51e7ece46f3d6dfa22e50465e3230f6b89f /include/linux/crypto.h | |
parent | 0c99c2a087c60b71e1fc90d070e2e16ca52defbe (diff) | |
download | blackbird-op-linux-bfad6cb3f8295559216690e1eb9c99003a79b3a0.tar.gz blackbird-op-linux-bfad6cb3f8295559216690e1eb9c99003a79b3a0.zip |
crypto: api - document missing stats member
This patchs adds missing member of stats documentation.
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/crypto.h')
-rw-r--r-- | include/linux/crypto.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 9850b41e38ae..81e178fb9ed8 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -564,6 +564,13 @@ struct crypto_istat_rng { * @cra_destroy: internally used * * @stats: union of all possible crypto_istat_xxx structures + * @stats.aead: statistics for AEAD algorithm + * @stats.akcipher: statistics for akcipher algorithm + * @stats.cipher: statistics for cipher algorithm + * @stats.compress: statistics for compress algorithm + * @stats.hash: statistics for hash algorithm + * @stats.rng: statistics for rng algorithm + * @stats.kpp: statistics for KPP algorithm * * The struct crypto_alg describes a generic Crypto API algorithm and is common * for all of the transformations. Any variable not documented here shall not |