diff options
author | lloyd <[email protected]> | 2012-01-24 13:51:02 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-24 13:51:02 +0000 |
commit | 1643d2a06d772a2bc32e391b6d4b97d6596392ca (patch) | |
tree | a079afd9b3d721508fb80a3884e2654d57216ad0 /src/pubkey/ec_group | |
parent | 827fdea89f0d366bfdbc833ae12e9c9c78c57047 (diff) |
Formatting and comment fix
Diffstat (limited to 'src/pubkey/ec_group')
-rw-r--r-- | src/pubkey/ec_group/ec_group.h | 10 |
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 = ""); |