forked from qt-creator/qt-creator
Coding style: Pure virtual functions, private implementation pointers.
Change-Id: I293f8dbd4e467e866bab381841659a07e32b9d90 Reviewed-on: http://codereview.qt-project.org/4948 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -75,15 +75,15 @@ private:
|
||||
SshAbstractCryptoFacility(const SshAbstractCryptoFacility &);
|
||||
SshAbstractCryptoFacility &operator=(const SshAbstractCryptoFacility &);
|
||||
|
||||
virtual QByteArray cryptAlgoName(const SshKeyExchange &kex) const=0;
|
||||
virtual QByteArray hMacAlgoName(const SshKeyExchange &kex) const=0;
|
||||
virtual QByteArray cryptAlgoName(const SshKeyExchange &kex) const = 0;
|
||||
virtual QByteArray hMacAlgoName(const SshKeyExchange &kex) const = 0;
|
||||
virtual Botan::BlockCipherMode *makeCipherMode(Botan::BlockCipher *cipher,
|
||||
Botan::BlockCipherModePaddingMethod *paddingMethod,
|
||||
const Botan::InitializationVector &iv,
|
||||
const Botan::SymmetricKey &key)=0;
|
||||
virtual char ivChar() const=0;
|
||||
virtual char keyChar() const=0;
|
||||
virtual char macChar() const=0;
|
||||
virtual char ivChar() const = 0;
|
||||
virtual char keyChar() const = 0;
|
||||
virtual char macChar() const = 0;
|
||||
|
||||
QByteArray generateHash(const SshKeyExchange &kex, char c, quint32 length);
|
||||
void checkInvariant() const;
|
||||
|
||||
Reference in New Issue
Block a user