Fix a shitloads of warnings on VS
Former-commit-id: fca61118f4e0530ed2eaaf9ff96de29806aa5aa8
This commit is contained in:
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashCRC32(UInt32 polynomial = 0x04c11db7);
|
||||
virtual ~HashCRC32();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -22,11 +22,11 @@ namespace Nz
|
||||
HashFletcher16();
|
||||
virtual ~HashFletcher16();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashMD5();
|
||||
virtual ~HashMD5();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashSHA1();
|
||||
virtual ~HashSHA1();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashSHA224();
|
||||
virtual ~HashSHA224();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashSHA256();
|
||||
virtual ~HashSHA256();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashSHA384();
|
||||
virtual ~HashSHA384();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -21,11 +21,11 @@ namespace Nz
|
||||
HashSHA512();
|
||||
virtual ~HashSHA512();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const override;
|
||||
std::size_t GetDigestLength() const override;
|
||||
const char* GetHashName() const override;
|
||||
|
||||
private:
|
||||
|
||||
@@ -19,11 +19,11 @@ namespace Nz
|
||||
HashWhirlpool();
|
||||
virtual ~HashWhirlpool();
|
||||
|
||||
void Append(const UInt8* data, unsigned int len) override;
|
||||
void Append(const UInt8* data, std::size_t len) override;
|
||||
void Begin() override;
|
||||
ByteArray End() override;
|
||||
|
||||
unsigned int GetDigestLength() const;
|
||||
std::size_t GetDigestLength() const;
|
||||
const char* GetHashName() const;
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user