summaryrefslogtreecommitdiff
path: root/osrng.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2005-09-05 21:43:43 +0000
committerweidai <weidai11@users.noreply.github.com>2005-09-05 21:43:43 +0000
commit09bb1aab6411aa9f373a037a46f8986d48b56075 (patch)
tree7c9380467a43a9fd9b4095024796ccabfdce1280 /osrng.h
parent946eb7f0f4831bdb3e25eee84489f896a5d1a867 (diff)
downloadcryptopp-git-09bb1aab6411aa9f373a037a46f8986d48b56075.tar.gz
port to GCC 4
Diffstat (limited to 'osrng.h')
-rw-r--r--osrng.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/osrng.h b/osrng.h
index 5f8ec44f..c860cb24 100644
--- a/osrng.h
+++ b/osrng.h
@@ -112,8 +112,6 @@ private:
unsigned int m_counter;
};
-CRYPTOPP_DLL_TEMPLATE_CLASS AutoSeededX917RNG<DES_EDE3>;
-
template <class BLOCK_CIPHER>
void AutoSeededX917RNG<BLOCK_CIPHER>::Reseed(const byte *key, size_t keylength, const byte *seed, const byte *timeVector)
{
@@ -161,6 +159,8 @@ byte AutoSeededX917RNG<BLOCK_CIPHER>::GenerateByte()
return b;
}
+CRYPTOPP_DLL_TEMPLATE_CLASS AutoSeededX917RNG<DES_EDE3>;
+
NAMESPACE_END
#endif