VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume/Hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Volume/Hash.h')
-rw-r--r--src/Volume/Hash.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/Volume/Hash.h b/src/Volume/Hash.h
index befdd631..70872d54 100644
--- a/src/Volume/Hash.h
+++ b/src/Volume/Hash.h
@@ -65,28 +65,6 @@ namespace VeraCrypt
Ripemd160 &operator= (const Ripemd160 &);
};
- // SHA-1
- class Sha1 : public Hash
- {
- public:
- Sha1 ();
- virtual ~Sha1 () { }
-
- virtual void GetDigest (const BufferPtr &buffer);
- virtual size_t GetBlockSize () const { return 64; }
- virtual size_t GetDigestSize () const { return 160 / 8; }
- virtual wstring GetName () const { return L"SHA-1"; }
- virtual shared_ptr <Hash> GetNew () const { return shared_ptr <Hash> (new Sha1); }
- virtual void Init ();
- virtual void ProcessData (const ConstBufferPtr &data);
-
- protected:
-
- private:
- Sha1 (const Sha1 &);
- Sha1 &operator= (const Sha1 &);
- };
-
// SHA-512
class Sha512 : public Hash
{