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; };