aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ec_group/ec_group.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pubkey/ec_group/ec_group.h')
-rw-r--r--src/pubkey/ec_group/ec_group.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pubkey/ec_group/ec_group.h b/src/pubkey/ec_group/ec_group.h
index b7b09985e..dadc9fba3 100644
--- a/src/pubkey/ec_group/ec_group.h
+++ b/src/pubkey/ec_group/ec_group.h
@@ -40,9 +40,9 @@ class BOTAN_DLL EC_Group
* @param cofactor the cofactor
*/
EC_Group(const CurveGFp& curve,
- const PointGFp& base_point,
- const BigInt& order,
- const BigInt& cofactor) :
+ const PointGFp& base_point,
+ const BigInt& order,
+ const BigInt& cofactor) :
curve(curve),
base_point(base_point),
order(order),
@@ -63,8 +63,8 @@ class BOTAN_DLL EC_Group
EC_Group(const OID& oid);
/**
- * Create an EC domain from PEM encoding (as from PEM_encode),
- * or from an OID name (eg "secp16r1", or "1.3.132.0.8")
+ * Create an EC domain from PEM encoding (as from PEM_encode), or
+ * from an OID name (eg "secp256r1", or "1.2.840.10045.3.1.7")
* @param pem_or_oid PEM-encoded data, or an OID
*/
EC_Group(const std::string& pem_or_oid = "");