Skip to content

Commit

Permalink
fix for compiling with Clang from Marshall Clow
Browse files Browse the repository at this point in the history
  • Loading branch information
weidai11 committed Jan 7, 2011
1 parent 1088b55 commit a3a3ff3
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Crypto++: a C++ Class Library of Cryptographic Schemes
Version 5.6.1 (8/9/2010, SVN r520)
Version 5.6.2 (in development)

Crypto++ Library is a free C++ class library of cryptographic schemes.
Currently the library contains the following algorithms:
Expand Down Expand Up @@ -41,7 +41,7 @@ Currently the library contains the following algorithms:
elliptic curve cryptography ECDSA, ECNR, ECIES, ECDH, ECMQV

insecure or obsolescent MD2, MD4, MD5, Panama Hash, DES, ARC4, SEAL
algorithms retained for backwards 3.0, WAKE, WAKE-OFB, DESX (DES-XEX3), RC2,
algorithms retained for backwards 3.0, WAKE-OFB, DESX (DES-XEX3), RC2,
compatibility and historical SAFER, 3-WAY, GOST, SHARK, CAST-128, Square
value

Expand Down
2 changes: 1 addition & 1 deletion algebra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ template <class T> const T& AbstractEuclideanDomain<T>::Gcd(const Element &a, co
Element g[3]={b, a};
unsigned int i0=0, i1=1, i2=2;

while (!Equal(g[i1], this->Identity()))
while (!this->Equal(g[i1], this->Identity()))
{
g[i2] = Mod(g[i0], g[i1]);
unsigned int t = i0; i0 = i1; i1 = i2; i2 = t;
Expand Down
6 changes: 3 additions & 3 deletions eccrypto.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ template <class EC> void DL_GroupParameters_EC<EC>::Initialize(const OID &oid)
StringSource ssG(param.g, true, new HexDecoder);
Element G;
bool result = GetCurve().DecodePoint(G, ssG, (size_t)ssG.MaxRetrievable());
SetSubgroupGenerator(G);
this->SetSubgroupGenerator(G);
assert(result);

StringSource ssN(param.n, true, new HexDecoder);
Expand Down Expand Up @@ -591,7 +591,7 @@ bool DL_GroupParameters_EC<EC>::ValidateElement(unsigned int level, const Elemen
if (level >= 2 && pass)
{
const Integer &q = GetSubgroupOrder();
Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, q);
Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : this->ExponentiateElement(g, q);
pass = pass && IsIdentity(gq);
}
return pass;
Expand Down Expand Up @@ -629,7 +629,7 @@ void DL_PublicKey_EC<EC>::BERDecodePublicKey(BufferedTransformation &bt, bool pa
typename EC::Point P;
if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size))
BERDecodeError();
SetPublicElement(P);
this->SetPublicElement(P);
}

template <class EC>
Expand Down
10 changes: 5 additions & 5 deletions eccrypto.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class DL_GroupParameters_EC : public DL_GroupParametersImpl<EcPrecomputation<EC>
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;
}
Expand Down Expand Up @@ -145,9 +145,9 @@ class DL_PublicKey_EC : public DL_PublicKeyImpl<DL_GroupParameters_EC<EC> >
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);
Expand All @@ -166,9 +166,9 @@ class DL_PrivateKey_EC : public DL_PrivateKeyImpl<DL_GroupParameters_EC<EC> >
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);
Expand Down
2 changes: 1 addition & 1 deletion panama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ void PanamaHash<B>::TruncatedFinal(byte *hash, size_t size)
{
this->ThrowIfInvalidTruncatedSize(size);

PadLastBlock(this->BLOCKSIZE, 0x01);
this->PadLastBlock(this->BLOCKSIZE, 0x01);

HashEndianCorrectedBlock(this->m_data);

Expand Down
2 changes: 1 addition & 1 deletion secblock.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class AllocatorWithCleanup : public AllocatorBase<T>

pointer allocate(size_type n, const void * = NULL)
{
CheckSize(n);
this->CheckSize(n);
if (n == 0)
return NULL;

Expand Down

0 comments on commit a3a3ff3

Please sign in to comment.