diff options
author | lloyd <[email protected]> | 2008-10-08 02:46:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-08 02:46:57 +0000 |
commit | ebfb6a6e9150820aa7e783f97bd5e0ac302adfbe (patch) | |
tree | cbdf8f8f7f223e59858d5024052a2fac1ea5b3dd /src/pubkey/ecc_key | |
parent | b46e73584275ce8dcf3114d124c82e92730d0dbc (diff) |
Reformatting
Diffstat (limited to 'src/pubkey/ecc_key')
-rw-r--r-- | src/pubkey/ecc_key/ecc_key.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h index 89fd5e7f1..d884b3d95 100644 --- a/src/pubkey/ecc_key/ecc_key.h +++ b/src/pubkey/ecc_key/ecc_key.h @@ -43,7 +43,7 @@ class EC_PublicKey : public virtual Public_Key * domain parameters of this point are not set * @result the public point of this key */ - inline Botan::PointGFp get_public_point() const + inline PointGFp get_public_point() const { if (!mp_public_point.get()) { @@ -109,7 +109,7 @@ class EC_PublicKey : public virtual Public_Key SecureVector<byte> m_enc_public_point; // stores the public point std::auto_ptr<EC_Domain_Params> mp_dom_pars; - std::auto_ptr<Botan::PointGFp> mp_public_point; + std::auto_ptr<PointGFp> mp_public_point; EC_dompar_enc m_param_enc; }; |