diff options
author | LABBE Corentin <clabbe.montjoie@gmail.com> | 2015-12-08 03:00:23 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-12-11 09:55:13 -0500 |
commit | e14a1f1e36e76580c1094694f2f666ac582b34df (patch) | |
tree | bb02376ab7e90bde95fe3a63fb131e4dfc59426f /include/crypto/akcipher.h | |
parent | d4b98f20f46454c153201d55c8336f769b7eb195 (diff) |
crypto: akcipher - fix typos in include/crypto/akcipher.h
Fix numerous spelling error in include/crypto/akcipher.h
Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/akcipher.h')
-rw-r--r-- | include/crypto/akcipher.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/crypto/akcipher.h b/include/crypto/akcipher.h index 45cd5b328040..354de15cea6b 100644 --- a/include/crypto/akcipher.h +++ b/include/crypto/akcipher.h | |||
@@ -21,9 +21,9 @@ | |||
21 | * @src: Source data | 21 | * @src: Source data |
22 | * @dst: Destination data | 22 | * @dst: Destination data |
23 | * @src_len: Size of the input buffer | 23 | * @src_len: Size of the input buffer |
24 | * @dst_len: Size of the output buffer. It needs to be at leaset | 24 | * @dst_len: Size of the output buffer. It needs to be at least |
25 | * as big as the expected result depending on the operation | 25 | * as big as the expected result depending on the operation |
26 | * After operation it will be updated with the acctual size of the | 26 | * After operation it will be updated with the actual size of the |
27 | * result. | 27 | * result. |
28 | * In case of error where the dst sgl size was insufficient, | 28 | * In case of error where the dst sgl size was insufficient, |
29 | * it will be updated to the size required for the operation. | 29 | * it will be updated to the size required for the operation. |
@@ -59,7 +59,7 @@ struct crypto_akcipher { | |||
59 | * algorithm. In case of error, where the dst_len was insufficient, | 59 | * algorithm. In case of error, where the dst_len was insufficient, |
60 | * the req->dst_len will be updated to the size required for the | 60 | * the req->dst_len will be updated to the size required for the |
61 | * operation | 61 | * operation |
62 | * @encrypt: Function performs an encrytp operation as defined by public key | 62 | * @encrypt: Function performs an encrypt operation as defined by public key |
63 | * algorithm. In case of error, where the dst_len was insufficient, | 63 | * algorithm. In case of error, where the dst_len was insufficient, |
64 | * the req->dst_len will be updated to the size required for the | 64 | * the req->dst_len will be updated to the size required for the |
65 | * operation | 65 | * operation |
@@ -73,7 +73,7 @@ struct crypto_akcipher { | |||
73 | * @set_priv_key: Function invokes the algorithm specific set private key | 73 | * @set_priv_key: Function invokes the algorithm specific set private key |
74 | * function, which knows how to decode and interpret | 74 | * function, which knows how to decode and interpret |
75 | * the BER encoded private key | 75 | * the BER encoded private key |
76 | * @max_size: Function returns dest buffer size reqired for a given key. | 76 | * @max_size: Function returns dest buffer size required for a given key. |
77 | * @init: Initialize the cryptographic transformation object. | 77 | * @init: Initialize the cryptographic transformation object. |
78 | * This function is used to initialize the cryptographic | 78 | * This function is used to initialize the cryptographic |
79 | * transformation object. This function is called only once at | 79 | * transformation object. This function is called only once at |
@@ -232,7 +232,7 @@ static inline void akcipher_request_set_callback(struct akcipher_request *req, | |||
232 | } | 232 | } |
233 | 233 | ||
234 | /** | 234 | /** |
235 | * akcipher_request_set_crypt() -- Sets reqest parameters | 235 | * akcipher_request_set_crypt() -- Sets request parameters |
236 | * | 236 | * |
237 | * Sets parameters required by crypto operation | 237 | * Sets parameters required by crypto operation |
238 | * | 238 | * |