diff options
author | lloyd <[email protected]> | 2011-04-22 13:08:05 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-22 13:08:05 +0000 |
commit | 8b40f974e65b7cc7d21a8e72b5f18f6e14208e57 (patch) | |
tree | 1192bdf14dbab29218db64abbef9ec0217ce30c8 /src/hash/sha1_amd64/sha1_amd64.cpp | |
parent | 7b96a4844bf97b9c04a18565334e21dc89b8ba0b (diff) |
Rename all references of ia32 to x86-32 and amd64 to x86-64.
Back the reported version from 1.10.0 to 1.9.17 for the time
being. Still on the fence if this will be 1.10.0 or another release
candidate instead.
Diffstat (limited to 'src/hash/sha1_amd64/sha1_amd64.cpp')
-rw-r--r-- | src/hash/sha1_amd64/sha1_amd64.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/hash/sha1_amd64/sha1_amd64.cpp b/src/hash/sha1_amd64/sha1_amd64.cpp deleted file mode 100644 index d32b44901..000000000 --- a/src/hash/sha1_amd64/sha1_amd64.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/* -* SHA-160 -* (C) 1999-2007 Jack Lloyd -* -* Distributed under the terms of the Botan license -*/ - -#include <botan/sha1_amd64.h> - -namespace Botan { - -namespace { - -extern "C" -void botan_sha160_amd64_compress(u32bit[5], const byte[64], u32bit[80]); - -} - -/* -* SHA-160 Compression Function -*/ -void SHA_160_AMD64::compress_n(const byte input[], size_t blocks) - { - for(size_t i = 0; i != blocks; ++i) - { - botan_sha160_amd64_compress(&digest[0], input, &W[0]); - input += hash_block_size(); - } - } - -} |