From 77e4bd7a7b93ead7ceb24afd9e93bed904ddf89b Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 9 Jun 2016 00:15:02 -0400 Subject: [PATCH] Cleared warning 'Warning: key hides CryptoPP::FixedRoundsCipherFactory::key' --- validat1.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/validat1.cpp b/validat1.cpp index 15f2edba..9e9c2195 100644 --- a/validat1.cpp +++ b/validat1.cpp @@ -1223,8 +1223,8 @@ public: virtual unsigned int BlockSize() const =0; virtual unsigned int KeyLength() const =0; - virtual apbt NewEncryption(const byte *key) const =0; - virtual apbt NewDecryption(const byte *key) const =0; + virtual apbt NewEncryption(const byte *keyStr) const =0; + virtual apbt NewDecryption(const byte *keyStr) const =0; }; template class FixedRoundsCipherFactory : public CipherFactory @@ -1234,10 +1234,10 @@ public: unsigned int BlockSize() const {return E::BLOCKSIZE;} unsigned int KeyLength() const {return m_keylen;} - apbt NewEncryption(const byte *key) const - {return apbt(new E(key, m_keylen));} - apbt NewDecryption(const byte *key) const - {return apbt(new D(key, m_keylen));} + apbt NewEncryption(const byte *keyStr) const + {return apbt(new E(keyStr, m_keylen));} + apbt NewDecryption(const byte *keyStr) const + {return apbt(new D(keyStr, m_keylen));} unsigned int m_keylen; }; @@ -1250,10 +1250,10 @@ public: unsigned int BlockSize() const {return E::BLOCKSIZE;} unsigned int KeyLength() const {return m_keylen;} - apbt NewEncryption(const byte *key) const - {return apbt(new E(key, m_keylen, m_rounds));} - apbt NewDecryption(const byte *key) const - {return apbt(new D(key, m_keylen, m_rounds));} + apbt NewEncryption(const byte *keyStr) const + {return apbt(new E(keyStr, m_keylen, m_rounds));} + apbt NewDecryption(const byte *keyStr) const + {return apbt(new D(keyStr, m_keylen, m_rounds));} unsigned int m_keylen, m_rounds; };