aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha1_sse2/sha1_sse2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/sha1_sse2/sha1_sse2.cpp')
-rw-r--r--src/hash/sha1_sse2/sha1_sse2.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/hash/sha1_sse2/sha1_sse2.cpp b/src/hash/sha1_sse2/sha1_sse2.cpp
index df7f2277c..36d266dcf 100644
--- a/src/hash/sha1_sse2/sha1_sse2.cpp
+++ b/src/hash/sha1_sse2/sha1_sse2.cpp
@@ -4,8 +4,6 @@
*************************************************/
#include <botan/sha1_sse2.h>
-#include <botan/loadstor.h>
-#include <botan/bit_ops.h>
namespace Botan {
@@ -19,26 +17,4 @@ void SHA_160_SSE2::hash(const byte input[])
botan_sha1_sse2_compress(digest, input);
}
-/*************************************************
-* Copy out the digest *
-*************************************************/
-void SHA_160_SSE2::copy_out(byte output[])
- {
- for(u32bit j = 0; j != OUTPUT_LENGTH; ++j)
- output[j] = get_byte(j % 4, digest[j/4]);
- }
-
-/*************************************************
-* Clear memory of sensitive data *
-*************************************************/
-void SHA_160_SSE2::clear() throw()
- {
- MDx_HashFunction::clear();
- digest[0] = 0x67452301;
- digest[1] = 0xEFCDAB89;
- digest[2] = 0x98BADCFE;
- digest[3] = 0x10325476;
- digest[4] = 0xC3D2E1F0;
- }
-
}