diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-06-03 18:01:21 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-06-04 10:05:08 +0300 |
commit | 12f7c14aa602f15ad60e5a9da459271f63b92917 (patch) | |
tree | 718746203a4690c06952534342500124262442c3 /include/crypto | |
parent | 6b212f0f09fa9abdaa62f560b70e64d8f20cd4af (diff) | |
download | linux-12f7c14aa602f15ad60e5a9da459271f63b92917.tar.xz |
crypto: doc - Fix typo in crypto-API.xml
This patch fix some typos found in crypto-API.xml.
It is because the file is generated from comments in sources,
so I had to fix typo in sources.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/aead.h | 2 | ||||
-rw-r--r-- | include/crypto/hash.h | 2 | ||||
-rw-r--r-- | include/crypto/rng.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/crypto/aead.h b/include/crypto/aead.h index 5cb0066be30b..7169ad04acc0 100644 --- a/include/crypto/aead.h +++ b/include/crypto/aead.h @@ -33,7 +33,7 @@ * * The example code provided for the asynchronous block cipher operation * applies here as well. Naturally all *ablkcipher* symbols must be exchanged - * the *aead* pendants discussed in the following. In addtion, for the AEAD + * the *aead* pendants discussed in the following. In addition, for the AEAD * operation, the aead_request_set_assoc function must be used to set the * pointer to the associated data memory location before performing the * encryption or decryption operation. In case of an encryption, the associated diff --git a/include/crypto/hash.h b/include/crypto/hash.h index 98abda9ed3aa..57c8a6ee33c2 100644 --- a/include/crypto/hash.h +++ b/include/crypto/hash.h @@ -66,7 +66,7 @@ struct ahash_request { /** * struct ahash_alg - asynchronous message digest definition * @init: Initialize the transformation context. Intended only to initialize the - * state of the HASH transformation at the begining. This shall fill in + * state of the HASH transformation at the beginning. This shall fill in * the internal structures used during the entire duration of the whole * transformation. No data processing happens at this point. * @update: Push a chunk of data into the driver for transformation. This diff --git a/include/crypto/rng.h b/include/crypto/rng.h index c5d4684429f5..b95ede354a66 100644 --- a/include/crypto/rng.h +++ b/include/crypto/rng.h @@ -28,7 +28,7 @@ struct crypto_rng; * if provided to the call. * @seed: Seed or reseed the random number generator. With the * invocation of this function call, the random number - * generator shall become ready fo generation. If the + * generator shall become ready for generation. If the * random number generator requires a seed for setting * up a new state, the seed must be provided by the * consumer while invoking this function. The required |