blob: 9f20f69b402039316096a65e6f1846b293a6616c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*************************************************
* SHA-160 (SSE2) Source File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#include <botan/sha1_sse2.h>
namespace Botan {
/*************************************************
* SHA-160 Compression Function *
*************************************************/
void SHA_160_SSE2::compress_n(const byte input[], u32bit blocks)
{
botan_sha1_sse2_compress(digest, reinterpret_cast<const u32bit*>(input), blocks);
}
}
|