From 20285bec01c266d0339c85560b4af841a1a780fa Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Wed, 23 Mar 2016 15:33:53 -0600 Subject: [PATCH] fix wc_ecc_import_raw comment, public key instead of base point --- wolfcrypt/src/ecc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/src/ecc.c b/wolfcrypt/src/ecc.c index d93db472e..4261e7854 100644 --- a/wolfcrypt/src/ecc.c +++ b/wolfcrypt/src/ecc.c @@ -3209,8 +3209,8 @@ int wc_ecc_rs_to_sig(const char* r, const char* s, byte* out, word32* outlen) /** Import raw ECC key key The destination ecc_key structure - qx x component of base point, as ASCII hex string - qy y component of base point, as ASCII hex string + qx x component of the public key, as ASCII hex string + qy y component of the public key, as ASCII hex string d private key, as ASCII hex string curveName ECC curve name, from ecc_sets[] return MP_OKAY on success