diff options
author | lloyd <[email protected]> | 2008-11-23 04:53:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-23 04:53:32 +0000 |
commit | ecc6e2ef456a924dae287ce6c3326e0b2f65a786 (patch) | |
tree | 28303263ab8ccd0f14c1f8fad874f6a23afdb010 /src/hash/sha1_sse2/sha1_sse2.h | |
parent | 1264c7c8d0da0c2581c75ba787ebe8aad4431a54 (diff) |
Revert change that added multiblock support to SSE2 SHA-1. Was causing
a random segfault (always inside an SSE2 intrinsic). Did not investigate
much beyond that. Worth looking into since it seemed worth another 1% or so.
Diffstat (limited to 'src/hash/sha1_sse2/sha1_sse2.h')
-rw-r--r-- | src/hash/sha1_sse2/sha1_sse2.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/hash/sha1_sse2/sha1_sse2.h b/src/hash/sha1_sse2/sha1_sse2.h index 089560535..57348e461 100644 --- a/src/hash/sha1_sse2/sha1_sse2.h +++ b/src/hash/sha1_sse2/sha1_sse2.h @@ -22,8 +22,7 @@ class BOTAN_DLL SHA_160_SSE2 : public SHA_160 void compress_n(const byte[], u32bit blocks); }; -extern "C" -void botan_sha1_sse2_compress(u32bit H[5], const u32bit inputu[], u32bit num_steps); +extern "C" void botan_sha1_sse2_compress(u32bit[5], const u32bit*); } |