diff options
| author | John Marino <marino@FreeBSD.org> | 2013-11-02 21:30:51 +0000 |
|---|---|---|
| committer | John Marino <marino@FreeBSD.org> | 2013-11-02 21:30:51 +0000 |
| commit | 3688feb4b5e892ad7b39b2388dcc184e13097f8f (patch) | |
| tree | b99b9e6e06a6e833bee583b81b3645e8aacf4291 /security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h | |
| parent | multimedia/vlc: enable OSS (diff) | |
security/py-pycryptopp: Fix C++ issues on modern gcc
Approved by: portmgr (bapt, implicit)
Diffstat (limited to 'security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h')
| -rw-r--r-- | security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h b/security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h new file mode 100644 index 000000000000..9cfdb3ade0f6 --- /dev/null +++ b/security/py-pycryptopp/files/patch-embeddedcryptopp_eccrypto.h @@ -0,0 +1,35 @@ +--- embeddedcryptopp/eccrypto.h.orig 2010-09-21 04:36:16.000000000 +0000 ++++ embeddedcryptopp/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> ¶ms, 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> ¶ms) +- {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); |
