summaryrefslogtreecommitdiff
path: root/sha.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-09-03 10:57:31 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2004-09-03 10:57:31 +0000
commit65ea2d1cb9f91b81127142551d0f4098583ede73 (patch)
tree19dad58c2b6f0728c0598cc5b120e9846d289b19 /sha.h
parentbf7ce9baa84e06a5bf001e55db1111c1050e2cfc (diff)
downloadcryptopp-65ea2d1cb9f91b81127142551d0f4098583ede73.tar.gz
changes related to the next FIPS validation
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@193 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'sha.h')
-rw-r--r--sha.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sha.h b/sha.h
index e0ac2ea..2ef53af 100644
--- a/sha.h
+++ b/sha.h
@@ -17,7 +17,7 @@ public:
typedef SHA SHA1;
//! implements the SHA-256 standard
-class SHA256 : public IteratedHashWithStaticTransform<word32, BigEndian, 64, 32, SHA256>
+class CRYPTOPP_DLL SHA256 : public IteratedHashWithStaticTransform<word32, BigEndian, 64, 32, SHA256>
{
public:
static void InitState(HashWordType *state);
@@ -29,7 +29,7 @@ protected:
};
//! implements the SHA-224 standard
-class SHA224 : public IteratedHashWithStaticTransform<word32, BigEndian, 64, 32, SHA224, 28>
+class CRYPTOPP_DLL SHA224 : public IteratedHashWithStaticTransform<word32, BigEndian, 64, 32, SHA224, 28>
{
public:
static void InitState(HashWordType *state);
@@ -40,7 +40,7 @@ public:
#ifdef WORD64_AVAILABLE
//! implements the SHA-512 standard
-class SHA512 : public IteratedHashWithStaticTransform<word64, BigEndian, 128, 64, SHA512>
+class CRYPTOPP_DLL SHA512 : public IteratedHashWithStaticTransform<word64, BigEndian, 128, 64, SHA512>
{
public:
static void InitState(HashWordType *state);
@@ -52,7 +52,7 @@ protected:
};
//! implements the SHA-384 standard
-class SHA384 : public IteratedHashWithStaticTransform<word64, BigEndian, 128, 64, SHA384, 48>
+class CRYPTOPP_DLL SHA384 : public IteratedHashWithStaticTransform<word64, BigEndian, 128, 64, SHA384, 48>
{
public:
static void InitState(HashWordType *state);