summaryrefslogtreecommitdiffstats
path: root/CryptoPP/eccrypto.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-07 10:38:33 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-07 10:38:33 +0200
commite0d32e0688c1bddbfba63f46e486c5ec6b79a9e6 (patch)
tree4c7bc4a7ec4b8df482924089df00c9f3126ed13b /CryptoPP/eccrypto.h
parentSplit the name for signed and unsigned int writing in cProtocol. (diff)
downloadcuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.gz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.bz2
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.lz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.xz
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.tar.zst
cuberite-e0d32e0688c1bddbfba63f46e486c5ec6b79a9e6.zip
Diffstat (limited to 'CryptoPP/eccrypto.h')
-rw-r--r--CryptoPP/eccrypto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/CryptoPP/eccrypto.h b/CryptoPP/eccrypto.h
index b359e033e..3530455a3 100644
--- a/CryptoPP/eccrypto.h
+++ b/CryptoPP/eccrypto.h
@@ -43,7 +43,7 @@ public:
void Initialize(const EllipticCurve &ec, const Point &G, const Integer &n, const Integer &k = Integer::Zero())
{
this->m_groupPrecomputation.SetCurve(ec);
- SetSubgroupGenerator(G);
+ this->SetSubgroupGenerator(G);
m_n = n;
m_k = k;
}
@@ -145,9 +145,9 @@ public:
typedef typename EC::Point Element;
void Initialize(const DL_GroupParameters_EC<EC> &params, const Element &Q)
- {this->AccessGroupParameters() = params; SetPublicElement(Q);}
+ {this->AccessGroupParameters() = params; this->SetPublicElement(Q);}
void Initialize(const EC &ec, const Element &G, const Integer &n, const Element &Q)
- {this->AccessGroupParameters().Initialize(ec, G, n); SetPublicElement(Q);}
+ {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPublicElement(Q);}
// X509PublicKey
void BERDecodePublicKey(BufferedTransformation &bt, bool parametersPresent, size_t size);
@@ -166,9 +166,9 @@ public:
void Initialize(const EC &ec, const Element &G, const Integer &n, const Integer &x)
{this->AccessGroupParameters().Initialize(ec, G, n); this->SetPrivateExponent(x);}
void Initialize(RandomNumberGenerator &rng, const DL_GroupParameters_EC<EC> &params)
- {GenerateRandom(rng, params);}
+ {this->GenerateRandom(rng, params);}
void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n)
- {GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
+ {this->GenerateRandom(rng, DL_GroupParameters_EC<EC>(ec, G, n));}
// PKCS8PrivateKey
void BERDecodePrivateKey(BufferedTransformation &bt, bool parametersPresent, size_t size);