]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
crypto: kpp, (ec)dh - fix typos
authorTudor-Dan Ambarus <tudor.ambarus@microchip.com>
Thu, 25 May 2017 07:18:03 +0000 (10:18 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 10 Jun 2017 04:04:25 +0000 (12:04 +0800)
While here, add missing argument description (ndigits).

Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/dh.c
crypto/dh_helper.c
crypto/ecc.h
crypto/ecdh.c
crypto/ecdh_helper.c
include/crypto/dh.h
include/crypto/ecdh.h
include/crypto/kpp.h

index 87e3542cf1b89e836b1316476d09031010abdea7..7cec04985b9d1eb1a608477b18481142284563b1 100644 (file)
@@ -4,9 +4,9 @@
  * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public Licence
+ * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version
- * 2 of the Licence, or (at your option) any later version.
+ * 2 of the License, or (at your option) any later version.
  */
 
 #include <linux/module.h>
index 02db76b20d003f02e86ef88552663c97f3a449a1..8ba8a3f826200c611e4e340df4502dab2b112c40 100644 (file)
@@ -3,9 +3,9 @@
  * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public Licence
+ * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version
- * 2 of the Licence, or (at your option) any later version.
+ * 2 of the License, or (at your option) any later version.
  */
 #include <linux/kernel.h>
 #include <linux/export.h>
index 663d598c7406cd872552001867c0ceda5c776a94..37f438500255e8ecb25a4800692797df191b08f0 100644 (file)
@@ -34,9 +34,9 @@
  * ecc_is_key_valid() - Validate a given ECDH private key
  *
  * @curve_id:          id representing the curve to use
- * @ndigits:           curve number of digits
+ * @ndigits:           curve's number of digits
  * @private_key:       private key to be used for the given curve
- * @private_key_len:   private key len
+ * @private_key_len:   private key length
  *
  * Returns 0 if the key is acceptable, a negative value otherwise
  */
@@ -47,9 +47,10 @@ int ecc_is_key_valid(unsigned int curve_id, unsigned int ndigits,
  * ecdh_make_pub_key() - Compute an ECC public key
  *
  * @curve_id:          id representing the curve to use
+ * @ndigits:           curve's number of digits
  * @private_key:       pregenerated private key for the given curve
  * @private_key_len:   length of private_key
- * @public_key:                buffer for storing the public key generated
+ * @public_key:                buffer for storing the generated public key
  * @public_key_len:    length of the public_key buffer
  *
  * Returns 0 if the public key was generated successfully, a negative value
@@ -63,6 +64,7 @@ int ecdh_make_pub_key(const unsigned int curve_id, unsigned int ndigits,
  * crypto_ecdh_shared_secret() - Compute a shared secret
  *
  * @curve_id:          id representing the curve to use
+ * @ndigits:           curve's number of digits
  * @private_key:       private key of part A
  * @private_key_len:   length of private_key
  * @public_key:                public key of counterpart B
index 63ca33771e4e771ebd0307d75e0e82c284cc51df..36233077a55261847b9c6f11bfe2d646add6a4fa 100644 (file)
@@ -4,9 +4,9 @@
  * Authors: Salvator Benedetto <salvatore.benedetto@intel.com>
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public Licence
+ * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version
- * 2 of the Licence, or (at your option) any later version.
+ * 2 of the License, or (at your option) any later version.
  */
 
 #include <linux/module.h>
index 3cd8a2414e60e6ec9ecd3060a8f5ea4944747cc4..f05bea5fd257ad85f0a9e771d62441ce8d03a4c1 100644 (file)
@@ -3,9 +3,9 @@
  * Authors: Salvatore Benedetto <salvatore.benedetto@intel.com>
  *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public Licence
+ * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version
- * 2 of the Licence, or (at your option) any later version.
+ * 2 of the License, or (at your option) any later version.
  */
 #include <linux/kernel.h>
 #include <linux/export.h>
index 6b424ad3482e3c5662d05108ea8cb06298cca808..f638998fb6d0ef2d58ec5a286a5b1f4a4b690ea0 100644 (file)
@@ -73,9 +73,9 @@ int crypto_dh_encode_key(char *buf, unsigned int len, const struct dh *params);
 /**
  * crypto_dh_decode_key() - decode a private key
  * @buf:       Buffer holding a packet key that should be decoded
- * @len:       Lenth of the packet private key buffer
+ * @len:       Length of the packet private key buffer
  * @params:    Buffer allocated by the caller that is filled with the
- *             unpacket DH private key.
+ *             unpacked DH private key.
  *
  * The unpacking obtains the private key by pointing @p to the correct location
  * in @buf. Thus, both pointers refer to the same memory.
index 03a64f62ba7a9fb46c89a9034d8530f28a94123c..1aff2a8a3a68927f82c6921da5bbff08dfa65237 100644 (file)
@@ -74,9 +74,9 @@ int crypto_ecdh_encode_key(char *buf, unsigned int len, const struct ecdh *p);
 /**
  * crypto_ecdh_decode_key() - decode a private key
  * @buf:       Buffer holding a packet key that should be decoded
- * @len:       Lenth of the packet private key buffer
+ * @len:       Length of the packet private key buffer
  * @p:         Buffer allocated by the caller that is filled with the
- *             unpacket ECDH private key.
+ *             unpacked ECDH private key.
  *
  * The unpacking obtains the private key by pointing @p to the correct location
  * in @buf. Thus, both pointers refer to the same memory.
index ce8e1f79374b64c30eb045d2cff8ad021bf340b1..c1908258795075fb1d9298ac76a70eef763ba4aa 100644 (file)
@@ -53,7 +53,7 @@ struct crypto_kpp {
  *
  * @set_secret:                Function invokes the protocol specific function to
  *                     store the secret private key along with parameters.
- *                     The implementation knows how to decode thie buffer
+ *                     The implementation knows how to decode the buffer
  * @generate_public_key: Function generate the public key to be sent to the
  *                     counterpart. In case of error, where output is not big
  *                     enough req->dst_len will be updated to the size
@@ -102,7 +102,7 @@ struct kpp_alg {
  * @mask: specifies the mask for the algorithm
  *
  * Allocate a handle for kpp algorithm. The returned struct crypto_kpp
- * is requeried for any following API invocation
+ * is required for any following API invocation
  *
  * Return: allocated handle in case of success; IS_ERR() is true in case of
  *        an error, PTR_ERR() returns the error code.