diff options
author | Sean Parkinson <sean@wolfssl.com> | 2017-10-16 05:45:09 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-12-24 15:03:07 (GMT) |
commit | 441e8bfbb4b0684b2bd446bfe1906b5968ac5000 (patch) | |
tree | 47505c090b62b56d4aa013e232383545ddbff138 | |
parent | 47e966abac6d4d0d4a83aeeb276b87cfa3ffdb1c (diff) | |
download | hostap-441e8bfbb4b0684b2bd446bfe1906b5968ac5000.zip hostap-441e8bfbb4b0684b2bd446bfe1906b5968ac5000.tar.gz hostap-441e8bfbb4b0684b2bd446bfe1906b5968ac5000.tar.bz2 |
Fix copy-paste errors in function comments
Use correct function names for the documentation.
Signed-off-by: Sean Parkinson <sean@wolfssl.com>
-rw-r--r-- | src/crypto/crypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index a723201..2659cd9 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -749,7 +749,7 @@ struct crypto_ec_point * crypto_ec_point_from_bin(struct crypto_ec *e, const u8 *val); /** - * crypto_bignum_add - c = a + b + * crypto_ec_point_add - c = a + b * @e: EC context from crypto_ec_init() * @a: Bignum * @b: Bignum @@ -761,7 +761,7 @@ int crypto_ec_point_add(struct crypto_ec *e, const struct crypto_ec_point *a, struct crypto_ec_point *c); /** - * crypto_bignum_mul - res = b * p + * crypto_ec_point_mul - res = b * p * @e: EC context from crypto_ec_init() * @p: EC point * @b: Bignum |