aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha1_ia32/sha1_ia32.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 20:41:56 +0000
committerlloyd <[email protected]>2008-09-29 20:41:56 +0000
commit4f5482b113907d8cf3b39532a61daf2b4653574c (patch)
tree4180225fb57a8abda958a0b47cab08451ab6a30a /src/hash/sha1_ia32/sha1_ia32.h
parent5a2001846f4470d90dff2a72896e1f19630e4fc2 (diff)
Derive x86, x86-64, and SSE2 implementations of SHA-1 directly from SHA_160
Diffstat (limited to 'src/hash/sha1_ia32/sha1_ia32.h')
-rw-r--r--src/hash/sha1_ia32/sha1_ia32.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/hash/sha1_ia32/sha1_ia32.h b/src/hash/sha1_ia32/sha1_ia32.h
index ab9dd8ac2..e294cc42c 100644
--- a/src/hash/sha1_ia32/sha1_ia32.h
+++ b/src/hash/sha1_ia32/sha1_ia32.h
@@ -6,29 +6,22 @@
#ifndef BOTAN_SHA_160_IA32_H__
#define BOTAN_SHA_160_IA32_H__
-#include <botan/mdx_hash.h>
+#include <botan/sha160.h>
namespace Botan {
/*************************************************
* SHA-160 *
*************************************************/
-class BOTAN_DLL SHA_160_IA32 : public MDx_HashFunction
+class BOTAN_DLL SHA_160_IA32 : public SHA_160
{
public:
- void clear() throw();
- std::string name() const { return "SHA-160"; }
HashFunction* clone() const { return new SHA_160_IA32; }
- SHA_160_IA32() : MDx_HashFunction(20, 64, true, true) { clear(); }
+ // Note 81 instead of normal 80: IA-32 asm needs an extra temp
+ SHA_160_IA32() : SHA_160(81) {}
private:
void hash(const byte[]);
- void copy_out(byte[]);
-
- SecureBuffer<u32bit, 5> digest;
-
- // Note 81 instead of normal 80: IA-32 asm needs an extra temp
- SecureBuffer<u32bit, 81> W;
};
}