diff options
author | lloyd <[email protected]> | 2008-10-13 20:13:37 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 20:13:37 +0000 |
commit | dd16af0fa865cc5b85ff111323c89d63b2e2fc5c (patch) | |
tree | 0f24f1e784ff04d149152a7eb858fd9372dc5508 /src | |
parent | 6f9b9a89ad3f6b0104f1f1b5596bc9b09a689ed1 (diff) |
Wrap lines
Diffstat (limited to 'src')
-rw-r--r-- | src/pubkey/ec_dompar/ec_dompar.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/pubkey/ec_dompar/ec_dompar.h b/src/pubkey/ec_dompar/ec_dompar.h index f7ac627c2..bda19ec86 100644 --- a/src/pubkey/ec_dompar/ec_dompar.h +++ b/src/pubkey/ec_dompar/ec_dompar.h @@ -32,8 +32,10 @@ class BOTAN_DLL EC_Domain_Params * @param order the order of the base point * @param cofactor the cofactor */ - EC_Domain_Params(CurveGFp const& curve, PointGFp const& base_point, - const BigInt& order, const BigInt& cofactor); + EC_Domain_Params(const CurveGFp& curve, + const PointGFp& base_point, + const BigInt& order, + const BigInt& cofactor); /** * Return domain parameter curve @@ -103,9 +105,10 @@ SecureVector<byte> encode_der_ec_dompar(EC_Domain_Params const& dom_pars, EC_Domain_Params decode_ber_ec_dompar(SecureVector<byte> const& encoded); /** -* Factory function, the only way to obtain EC domain parameters with an OID. -* The demanded OID has to be registered in the InSiTo configuration. Consult the file -* policy.cpp for the default configuration. +* Factory function, the only way to obtain EC domain parameters with +* an OID. The demanded OID has to be registered in the InSiTo +* configuration. Consult the file ec_dompar.cpp for the default +* configuration. * @param the oid of the demanded EC domain parameters * @result the EC domain parameters associated with the OID */ |