aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha2/sha256.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/sha2/sha256.h')
-rw-r--r--src/hash/sha2/sha256.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/hash/sha2/sha256.h b/src/hash/sha2/sha256.h
deleted file mode 100644
index cdbe02822..000000000
--- a/src/hash/sha2/sha256.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*************************************************
-* SHA-256 Header File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#ifndef BOTAN_SHA_256_H__
-#define BOTAN_SHA_256_H__
-
-#include <botan/mdx_hash.h>
-
-namespace Botan {
-
-/*************************************************
-* SHA-256 *
-*************************************************/
-class BOTAN_DLL SHA_256 : public MDx_HashFunction
- {
- public:
- void clear() throw();
- std::string name() const { return "SHA-256"; }
- HashFunction* clone() const { return new SHA_256; }
- SHA_256() : MDx_HashFunction(32, 64, true, true) { clear(); }
- private:
- void hash(const byte[]);
- void copy_out(byte[]);
-
- SecureBuffer<u32bit, 64> W;
- SecureBuffer<u32bit, 8> digest;
- };
-
-}
-
-#endif