From 68bd19cb320b2023aa892c2de15b419edf3f3086 Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 17 Oct 2002 16:32:28 +0000 Subject: bug fixes and KAT for X9.17 RNG git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@11 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- algparam.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'algparam.cpp') diff --git a/algparam.cpp b/algparam.cpp index 1ef7de4..1b980b6 100644 --- a/algparam.cpp +++ b/algparam.cpp @@ -6,7 +6,11 @@ NAMESPACE_BEGIN(CryptoPP) -const std::type_info &g_typeidInteger = typeid(Integer); +const std::type_info & IntegerTypeId() +{ + static const std::type_info &s_typeidInteger = typeid(Integer); + return s_typeidInteger; +} void AssignIntToInteger(void *pInteger, const void *pInt) { -- cgit v1.2.1