aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/ecc_key
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2017-01-27 18:38:34 +0100
committerRenĂ© Korthaus <[email protected]>2017-01-27 18:41:26 +0100
commit33587ab1a110043fe7ff69f2a9e1355be2e2ca58 (patch)
tree854d4da37622881c8742e6c79fa1c777fd2ab526 /src/lib/pubkey/ecc_key
parent885c96251e931909f783c1bc3fefd9f7663e47d9 (diff)
Fix private key ctors API docs [ci skip]
Diffstat (limited to 'src/lib/pubkey/ecc_key')
-rw-r--r--src/lib/pubkey/ecc_key/ecc_key.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/pubkey/ecc_key/ecc_key.h b/src/lib/pubkey/ecc_key/ecc_key.h
index d4ce6c0e7..60e29bffc 100644
--- a/src/lib/pubkey/ecc_key/ecc_key.h
+++ b/src/lib/pubkey/ecc_key/ecc_key.h
@@ -121,8 +121,9 @@ class BOTAN_DLL EC_PrivateKey : public virtual EC_PublicKey,
bool with_modular_inverse=false);
/*
- * Creates a new private key object from the given
- * key_bits. If with_modular_inverse is set,
+ * Creates a new private key object from the
+ * ECPrivateKey structure given in key_bits.
+ * If with_modular_inverse is set,
* the public key will be calculated by multiplying
* the base point with the modular inverse of
* x (as in ECGDSA and ECKCDSA), otherwise by