From 65ea2d1cb9f91b81127142551d0f4098583ede73 Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 3 Sep 2004 10:57:31 +0000 Subject: 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 --- sha.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sha.h') 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 +class CRYPTOPP_DLL SHA256 : public IteratedHashWithStaticTransform { public: static void InitState(HashWordType *state); @@ -29,7 +29,7 @@ protected: }; //! implements the SHA-224 standard -class SHA224 : public IteratedHashWithStaticTransform +class CRYPTOPP_DLL SHA224 : public IteratedHashWithStaticTransform { public: static void InitState(HashWordType *state); @@ -40,7 +40,7 @@ public: #ifdef WORD64_AVAILABLE //! implements the SHA-512 standard -class SHA512 : public IteratedHashWithStaticTransform +class CRYPTOPP_DLL SHA512 : public IteratedHashWithStaticTransform { public: static void InitState(HashWordType *state); @@ -52,7 +52,7 @@ protected: }; //! implements the SHA-384 standard -class SHA384 : public IteratedHashWithStaticTransform +class CRYPTOPP_DLL SHA384 : public IteratedHashWithStaticTransform { public: static void InitState(HashWordType *state); -- cgit v1.2.1