• Main Page
  • Namespaces
  • Classes
  • Files
  • File List
  • File Members

config.h

00001 #define CRYPTOPP_DISABLE_SSE2
00002 #ifndef CRYPTOPP_CONFIG_H
00003 #define CRYPTOPP_CONFIG_H
00004 
00005 // ***************** Important Settings ********************
00006 
00007 // define this if running on a big-endian CPU
00008 #if !defined(IS_LITTLE_ENDIAN) && (defined(__BIG_ENDIAN__) || defined(__sparc) || defined(__sparc__) || defined(__hppa__) || defined(__MIPSEB__) || defined(__s390__) || defined(__ARMEB__) || (defined(__MWERKS__) && !defined(__INTEL__)))
00009 #       define IS_BIG_ENDIAN
00010 #endif
00011 
00012 // define this if running on a little-endian CPU
00013 // big endian will be assumed if IS_LITTLE_ENDIAN is not defined
00014 #ifndef IS_BIG_ENDIAN
00015 #       define IS_LITTLE_ENDIAN
00016 #endif
00017 
00018 // define this if you want to disable all OS-dependent features,
00019 // such as sockets and OS-provided random number generators
00020 // #define NO_OS_DEPENDENCE
00021 
00022 // Define this to use features provided by Microsoft's CryptoAPI.
00023 // Currently the only feature used is random number generation.
00024 // This macro will be ignored if NO_OS_DEPENDENCE is defined.
00025 #define USE_MS_CRYPTOAPI
00026 
00027 // Define this to 1 to enforce the requirement in FIPS 186-2 Change Notice 1 that only 1024 bit moduli be used
00028 #ifndef DSA_1024_BIT_MODULUS_ONLY
00029 #       define DSA_1024_BIT_MODULUS_ONLY 1
00030 #endif
00031 
00032 // ***************** Less Important Settings ***************
00033 
00034 // define this to retain (as much as possible) old deprecated function and class names
00035 // #define CRYPTOPP_MAINTAIN_BACKWARDS_COMPATIBILITY
00036 
00037 #define GZIP_OS_CODE 0
00038 
00039 // Try this if your CPU has 256K internal cache or a slow multiply instruction
00040 // and you want a (possibly) faster IDEA implementation using log tables
00041 // #define IDEA_LARGECACHE
00042 
00043 // Define this if, for the linear congruential RNG, you want to use
00044 // the original constants as specified in S.K. Park and K.W. Miller's
00045 // CACM paper.
00046 // #define LCRNG_ORIGINAL_NUMBERS
00047 
00048 // choose which style of sockets to wrap (mostly useful for cygwin which has both)
00049 #define PREFER_BERKELEY_STYLE_SOCKETS
00050 // #define PREFER_WINDOWS_STYLE_SOCKETS
00051 
00052 // set the name of Rijndael cipher, was "Rijndael" before version 5.3
00053 #define CRYPTOPP_RIJNDAEL_NAME "AES"
00054 
00055 // ***************** Important Settings Again ********************
00056 // But the defaults should be ok.
00057 
00058 // namespace support is now required
00059 #ifdef NO_NAMESPACE
00060 #       error namespace support is now required
00061 #endif
00062 
00063 // Define this to workaround a Microsoft CryptoAPI bug where
00064 // each call to CryptAcquireContext causes a 100 KB memory leak.
00065 // Defining this will cause Crypto++ to make only one call to CryptAcquireContext.
00066 #define WORKAROUND_MS_BUG_Q258000
00067 
00068 #ifdef CRYPTOPP_DOXYGEN_PROCESSING
00069 // Avoid putting "CryptoPP::" in front of everything in Doxygen output
00070 #       define CryptoPP
00071 #       define NAMESPACE_BEGIN(x)
00072 #       define NAMESPACE_END
00073 // Get Doxygen to generate better documentation for these typedefs
00074 #       define DOCUMENTED_TYPEDEF(x, y) class y : public x {};
00075 #else
00076 #       define NAMESPACE_BEGIN(x) namespace x {
00077 #       define NAMESPACE_END }
00078 #       define DOCUMENTED_TYPEDEF(x, y) typedef x y;
00079 #endif
00080 #define ANONYMOUS_NAMESPACE_BEGIN namespace {
00081 #define USING_NAMESPACE(x) using namespace x;
00082 #define DOCUMENTED_NAMESPACE_BEGIN(x) namespace x {
00083 #define DOCUMENTED_NAMESPACE_END }
00084 
00085 // What is the type of the third parameter to bind?
00086 // For Unix, the new standard is ::socklen_t (typically unsigned int), and the old standard is int.
00087 // Unfortunately there is no way to tell whether or not socklen_t is defined.
00088 // To work around this, TYPE_OF_SOCKLEN_T is a macro so that you can change it from the makefile.
00089 #ifndef TYPE_OF_SOCKLEN_T
00090 #       if defined(_WIN32) || defined(__CYGWIN__)
00091 #               define TYPE_OF_SOCKLEN_T int
00092 #       else
00093 #               define TYPE_OF_SOCKLEN_T ::socklen_t
00094 #       endif
00095 #endif
00096 
00097 #if defined(__CYGWIN__) && defined(PREFER_WINDOWS_STYLE_SOCKETS)
00098 #       define __USE_W32_SOCKETS
00099 #endif
00100 
00101 typedef unsigned char byte;             // put in global namespace to avoid ambiguity with other byte typedefs
00102 
00103 NAMESPACE_BEGIN(CryptoPP)
00104 
00105 typedef unsigned short word16;
00106 typedef unsigned int word32;
00107 
00108 #if defined(_MSC_VER) || defined(__BORLANDC__)
00109         typedef unsigned __int64 word64;
00110         #define W64LIT(x) x##ui64
00111 #else
00112         typedef unsigned long long word64;
00113         #define W64LIT(x) x##ULL
00114 #endif
00115 
00116 // define large word type, used for file offsets and such
00117 typedef word64 lword;
00118 const lword LWORD_MAX = W64LIT(0xffffffffffffffff);
00119 
00120 #ifdef __GNUC__
00121         #define CRYPTOPP_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
00122 #endif
00123 
00124 // define hword, word, and dword. these are used for multiprecision integer arithmetic
00125 // Intel compiler won't have _umul128 until version 10.0. See http://softwarecommunity.intel.com/isn/Community/en-US/forums/thread/30231625.aspx
00126 #if (defined(_MSC_VER) && (!defined(__INTEL_COMPILER) || __INTEL_COMPILER >= 1000) && (defined(_M_X64) || defined(_M_IA64))) || (defined(__DECCXX) && defined(__alpha__)) || (defined(__INTEL_COMPILER) && defined(__x86_64__)) || (defined(__SUNPRO_CC) && defined(__x86_64__))
00127         typedef word32 hword;
00128         typedef word64 word;
00129 #else
00130         #define CRYPTOPP_NATIVE_DWORD_AVAILABLE
00131         #if defined(__alpha__) || defined(__ia64__) || defined(_ARCH_PPC64) || defined(__x86_64__) || defined(__mips64) || defined(__sparc64__) || defined(__s390x__)
00132                 #if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !(CRYPTOPP_GCC_VERSION == 40001 && defined(__APPLE__)) && CRYPTOPP_GCC_VERSION >= 30400
00133                         // GCC 4.0.1 on MacOS X is missing __umodti3 and __udivti3
00134                         // mode(TI) division broken on amd64 with GCC earlier than GCC 3.4
00135                         typedef word32 hword;
00136                         typedef word64 word;
00137                         typedef __uint128_t dword;
00138                         typedef __uint128_t word128;
00139                         #define CRYPTOPP_WORD128_AVAILABLE
00140                 #else
00141                         // if we're here, it means we're on a 64-bit CPU but we don't have a way to obtain 128-bit multiplication results
00142                         typedef word16 hword;
00143                         typedef word32 word;
00144                         typedef word64 dword;
00145                 #endif
00146         #else
00147                 // being here means the native register size is probably 32 bits or less
00148                 #define CRYPTOPP_BOOL_SLOW_WORD64 1
00149                 typedef word16 hword;
00150                 typedef word32 word;
00151                 typedef word64 dword;
00152         #endif
00153 #endif
00154 #ifndef CRYPTOPP_BOOL_SLOW_WORD64
00155         #define CRYPTOPP_BOOL_SLOW_WORD64 0
00156 #endif
00157 
00158 const unsigned int WORD_SIZE = sizeof(word);
00159 const unsigned int WORD_BITS = WORD_SIZE * 8;
00160 
00161 NAMESPACE_END
00162 
00163 #ifndef CRYPTOPP_L1_CACHE_LINE_SIZE
00164         // This should be a lower bound on the L1 cache line size. It's used for defense against timing attacks.
00165         #if defined(_M_X64) || defined(__x86_64__)
00166                 #define CRYPTOPP_L1_CACHE_LINE_SIZE 64
00167         #else
00168                 // L1 cache line size is 32 on Pentium III and earlier
00169                 #define CRYPTOPP_L1_CACHE_LINE_SIZE 32
00170         #endif
00171 #endif
00172 
00173 #if defined(_MSC_VER)
00174         #if _MSC_VER == 1200
00175                 #include <malloc.h>
00176         #endif
00177         #if _MSC_VER > 1200 || defined(_mm_free)
00178                 #define CRYPTOPP_MSVC6PP_OR_LATER               // VC 6 processor pack or later
00179         #else
00180                 #define CRYPTOPP_MSVC6_NO_PP                    // VC 6 without processor pack
00181         #endif
00182 #endif
00183 
00184 #ifndef CRYPTOPP_ALIGN_DATA
00185         #if defined(CRYPTOPP_MSVC6PP_OR_LATER)
00186                 #define CRYPTOPP_ALIGN_DATA(x) __declspec(align(x))
00187         #elif defined(__GNUC__)
00188                 #define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
00189         #else
00190                 #define CRYPTOPP_ALIGN_DATA(x)
00191         #endif
00192 #endif
00193 
00194 #ifndef CRYPTOPP_SECTION_ALIGN16
00195         #if defined(__GNUC__) && !defined(__APPLE__)
00196                 // the alignment attribute doesn't seem to work without this section attribute when -fdata-sections is turned on
00197                 #define CRYPTOPP_SECTION_ALIGN16 __attribute__((section ("CryptoPP_Align16")))
00198         #else
00199                 #define CRYPTOPP_SECTION_ALIGN16
00200         #endif
00201 #endif
00202 
00203 #if defined(_MSC_VER) || defined(__fastcall)
00204         #define CRYPTOPP_FASTCALL __fastcall
00205 #else
00206         #define CRYPTOPP_FASTCALL
00207 #endif
00208 
00209 // VC60 workaround: it doesn't allow typename in some places
00210 #if defined(_MSC_VER) && (_MSC_VER < 1300)
00211 #define CPP_TYPENAME
00212 #else
00213 #define CPP_TYPENAME typename
00214 #endif
00215 
00216 // VC60 workaround: can't cast unsigned __int64 to float or double
00217 #if defined(_MSC_VER) && !defined(CRYPTOPP_MSVC6PP_OR_LATER)
00218 #define CRYPTOPP_VC6_INT64 (__int64)
00219 #else
00220 #define CRYPTOPP_VC6_INT64
00221 #endif
00222 
00223 #ifdef _MSC_VER
00224 #define CRYPTOPP_NO_VTABLE __declspec(novtable)
00225 #else
00226 #define CRYPTOPP_NO_VTABLE
00227 #endif
00228 
00229 #ifdef _MSC_VER
00230         // 4231: nonstandard extension used : 'extern' before template explicit instantiation
00231         // 4250: dominance
00232         // 4251: member needs to have dll-interface
00233         // 4275: base needs to have dll-interface
00234         // 4660: explicitly instantiating a class that's already implicitly instantiated
00235         // 4661: no suitable definition provided for explicit template instantiation request
00236         // 4786: identifer was truncated in debug information
00237         // 4355: 'this' : used in base member initializer list
00238         // 4910: '__declspec(dllexport)' and 'extern' are incompatible on an explicit instantiation
00239 #       pragma warning(disable: 4231 4250 4251 4275 4660 4661 4786 4355 4910)
00240 #endif
00241 
00242 #ifdef __BORLANDC__
00243 // 8037: non-const function called for const object. needed to work around BCB2006 bug
00244 #       pragma warn -8037
00245 #endif
00246 
00247 #if (defined(_MSC_VER) && _MSC_VER <= 1300) || defined(__MWERKS__) || defined(_STLPORT_VERSION)
00248 #define CRYPTOPP_DISABLE_UNCAUGHT_EXCEPTION
00249 #endif
00250 
00251 #ifndef CRYPTOPP_DISABLE_UNCAUGHT_EXCEPTION
00252 #define CRYPTOPP_UNCAUGHT_EXCEPTION_AVAILABLE
00253 #endif
00254 
00255 #ifdef CRYPTOPP_DISABLE_X86ASM          // for backwards compatibility: this macro had both meanings
00256 #define CRYPTOPP_DISABLE_ASM
00257 #define CRYPTOPP_DISABLE_SSE2
00258 #endif
00259 
00260 #if !defined(CRYPTOPP_DISABLE_ASM) && ((defined(_MSC_VER) && defined(_M_IX86)) || (defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))))
00261         // C++Builder 2010 does not allow "call label" where label is defined within inline assembly
00262         #define CRYPTOPP_X86_ASM_AVAILABLE
00263 
00264         #if !defined(CRYPTOPP_DISABLE_SSE2) && (defined(CRYPTOPP_MSVC6PP_OR_LATER) || CRYPTOPP_GCC_VERSION >= 30300)
00265                 #define CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE 1
00266         #else
00267                 #define CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE 0
00268         #endif
00269 
00270         // SSSE3 was actually introduced in GNU as 2.17, which was released 6/23/2006, but we can't tell what version of binutils is installed.
00271         // GCC 4.1.2 was released on 2/13/2007, so we'll use that as a proxy for the binutils version.
00272         #if !defined(CRYPTOPP_DISABLE_SSSE3) && (_MSC_VER >= 1400 || CRYPTOPP_GCC_VERSION >= 40102)
00273                 #define CRYPTOPP_BOOL_SSSE3_ASM_AVAILABLE 1
00274         #else
00275                 #define CRYPTOPP_BOOL_SSSE3_ASM_AVAILABLE 0
00276         #endif
00277 #endif
00278 
00279 #if !defined(CRYPTOPP_DISABLE_ASM) && defined(_MSC_VER) && defined(_M_X64)
00280         #define CRYPTOPP_X64_MASM_AVAILABLE
00281 #endif
00282 
00283 #if !defined(CRYPTOPP_DISABLE_ASM) && defined(__GNUC__) && defined(__x86_64__)
00284         #define CRYPTOPP_X64_ASM_AVAILABLE
00285 #endif
00286 
00287 #if !defined(CRYPTOPP_DISABLE_SSE2) && (defined(CRYPTOPP_MSVC6PP_OR_LATER) || defined(__SSE2__))
00288         #define CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE 1
00289 #else
00290         #define CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE 0
00291 #endif
00292 
00293 #if !defined(CRYPTOPP_DISABLE_SSSE3) && !defined(CRYPTOPP_DISABLE_AESNI) && CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE && (CRYPTOPP_GCC_VERSION >= 40400 || _MSC_FULL_VER >= 150030729 || __INTEL_COMPILER >= 1110)
00294         #define CRYPTOPP_BOOL_AESNI_INTRINSICS_AVAILABLE 1
00295 #else
00296         #define CRYPTOPP_BOOL_AESNI_INTRINSICS_AVAILABLE 0
00297 #endif
00298 
00299 #if CRYPTOPP_BOOL_SSE2_INTRINSICS_AVAILABLE || CRYPTOPP_BOOL_SSE2_ASM_AVAILABLE || defined(CRYPTOPP_X64_MASM_AVAILABLE)
00300         #define CRYPTOPP_BOOL_ALIGN16_ENABLED 1
00301 #else
00302         #define CRYPTOPP_BOOL_ALIGN16_ENABLED 0
00303 #endif
00304 
00305 // how to allocate 16-byte aligned memory (for SSE2)
00306 #if defined(CRYPTOPP_MSVC6PP_OR_LATER)
00307         #define CRYPTOPP_MM_MALLOC_AVAILABLE
00308 #elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
00309         #define CRYPTOPP_MALLOC_ALIGNMENT_IS_16
00310 #elif defined(__linux__) || defined(__sun__) || defined(__CYGWIN__)
00311         #define CRYPTOPP_MEMALIGN_AVAILABLE
00312 #else
00313         #define CRYPTOPP_NO_ALIGNED_ALLOC
00314 #endif
00315 
00316 // how to disable inlining
00317 #if defined(_MSC_VER) && _MSC_VER >= 1300
00318 #       define CRYPTOPP_NOINLINE_DOTDOTDOT
00319 #       define CRYPTOPP_NOINLINE __declspec(noinline)
00320 #elif defined(__GNUC__)
00321 #       define CRYPTOPP_NOINLINE_DOTDOTDOT
00322 #       define CRYPTOPP_NOINLINE __attribute__((noinline))
00323 #else
00324 #       define CRYPTOPP_NOINLINE_DOTDOTDOT ...
00325 #       define CRYPTOPP_NOINLINE 
00326 #endif
00327 
00328 // how to declare class constants
00329 #if (defined(_MSC_VER) && _MSC_VER <= 1300) || defined(__INTEL_COMPILER)
00330 #       define CRYPTOPP_CONSTANT(x) enum {x};
00331 #else
00332 #       define CRYPTOPP_CONSTANT(x) static const int x;
00333 #endif
00334 
00335 #if defined(_M_X64) || defined(__x86_64__)
00336         #define CRYPTOPP_BOOL_X64 1
00337 #else
00338         #define CRYPTOPP_BOOL_X64 0
00339 #endif
00340 
00341 // see http://predef.sourceforge.net/prearch.html
00342 #if defined(_M_IX86) || defined(__i386__) || defined(__i386) || defined(_X86_) || defined(__I86__) || defined(__INTEL__)
00343         #define CRYPTOPP_BOOL_X86 1
00344 #else
00345         #define CRYPTOPP_BOOL_X86 0
00346 #endif
00347 
00348 #if CRYPTOPP_BOOL_X64 || CRYPTOPP_BOOL_X86 || defined(__powerpc__)
00349         #define CRYPTOPP_ALLOW_UNALIGNED_DATA_ACCESS
00350 #endif
00351 
00352 #define CRYPTOPP_VERSION 561
00353 
00354 // ***************** determine availability of OS features ********************
00355 
00356 #ifndef NO_OS_DEPENDENCE
00357 
00358 #if defined(_WIN32) || defined(__CYGWIN__)
00359 #define CRYPTOPP_WIN32_AVAILABLE
00360 #endif
00361 
00362 #if defined(__unix__) || defined(__MACH__) || defined(__NetBSD__) || defined(__sun)
00363 #define CRYPTOPP_UNIX_AVAILABLE
00364 #endif
00365 
00366 #if defined(CRYPTOPP_WIN32_AVAILABLE) || defined(CRYPTOPP_UNIX_AVAILABLE)
00367 #       define HIGHRES_TIMER_AVAILABLE
00368 #endif
00369 
00370 #ifdef CRYPTOPP_UNIX_AVAILABLE
00371 #       define HAS_BERKELEY_STYLE_SOCKETS
00372 #endif
00373 
00374 #ifdef CRYPTOPP_WIN32_AVAILABLE
00375 #       define HAS_WINDOWS_STYLE_SOCKETS
00376 #endif
00377 
00378 #if defined(HIGHRES_TIMER_AVAILABLE) && (defined(HAS_BERKELEY_STYLE_SOCKETS) || defined(HAS_WINDOWS_STYLE_SOCKETS))
00379 #       define SOCKETS_AVAILABLE
00380 #endif
00381 
00382 #if defined(HAS_WINDOWS_STYLE_SOCKETS) && (!defined(HAS_BERKELEY_STYLE_SOCKETS) || defined(PREFER_WINDOWS_STYLE_SOCKETS))
00383 #       define USE_WINDOWS_STYLE_SOCKETS
00384 #else
00385 #       define USE_BERKELEY_STYLE_SOCKETS
00386 #endif
00387 
00388 #if defined(HIGHRES_TIMER_AVAILABLE) && defined(CRYPTOPP_WIN32_AVAILABLE) && !defined(USE_BERKELEY_STYLE_SOCKETS)
00389 #       define WINDOWS_PIPES_AVAILABLE
00390 #endif
00391 
00392 #if defined(CRYPTOPP_WIN32_AVAILABLE) && defined(USE_MS_CRYPTOAPI)
00393 #       define NONBLOCKING_RNG_AVAILABLE
00394 #       define OS_RNG_AVAILABLE
00395 #endif
00396 
00397 #if defined(CRYPTOPP_UNIX_AVAILABLE) || defined(CRYPTOPP_DOXYGEN_PROCESSING)
00398 #       define NONBLOCKING_RNG_AVAILABLE
00399 #       define BLOCKING_RNG_AVAILABLE
00400 #       define OS_RNG_AVAILABLE
00401 #       define HAS_PTHREADS
00402 #       define THREADS_AVAILABLE
00403 #endif
00404 
00405 #ifdef CRYPTOPP_WIN32_AVAILABLE
00406 #       define HAS_WINTHREADS
00407 #       define THREADS_AVAILABLE
00408 #endif
00409 
00410 #endif  // NO_OS_DEPENDENCE
00411 
00412 // ***************** DLL related ********************
00413 
00414 #if defined(CRYPTOPP_WIN32_AVAILABLE) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
00415 
00416 #ifdef CRYPTOPP_EXPORTS
00417 #define CRYPTOPP_IS_DLL
00418 #define CRYPTOPP_DLL __declspec(dllexport)
00419 #elif defined(CRYPTOPP_IMPORTS)
00420 #define CRYPTOPP_IS_DLL
00421 #define CRYPTOPP_DLL __declspec(dllimport)
00422 #else
00423 #define CRYPTOPP_DLL
00424 #endif
00425 
00426 #define CRYPTOPP_API __cdecl
00427 
00428 #else   // CRYPTOPP_WIN32_AVAILABLE
00429 
00430 #define CRYPTOPP_DLL
00431 #define CRYPTOPP_API
00432 
00433 #endif  // CRYPTOPP_WIN32_AVAILABLE
00434 
00435 #if defined(__MWERKS__)
00436 #define CRYPTOPP_EXTERN_DLL_TEMPLATE_CLASS extern class CRYPTOPP_DLL
00437 #elif defined(__BORLANDC__) || defined(__SUNPRO_CC)
00438 #define CRYPTOPP_EXTERN_DLL_TEMPLATE_CLASS template class CRYPTOPP_DLL
00439 #else
00440 #define CRYPTOPP_EXTERN_DLL_TEMPLATE_CLASS extern template class CRYPTOPP_DLL
00441 #endif
00442 
00443 #if defined(CRYPTOPP_MANUALLY_INSTANTIATE_TEMPLATES) && !defined(CRYPTOPP_IMPORTS)
00444 #define CRYPTOPP_DLL_TEMPLATE_CLASS template class CRYPTOPP_DLL
00445 #else
00446 #define CRYPTOPP_DLL_TEMPLATE_CLASS CRYPTOPP_EXTERN_DLL_TEMPLATE_CLASS
00447 #endif
00448 
00449 #if defined(__MWERKS__)
00450 #define CRYPTOPP_EXTERN_STATIC_TEMPLATE_CLASS extern class
00451 #elif defined(__BORLANDC__) || defined(__SUNPRO_CC)
00452 #define CRYPTOPP_EXTERN_STATIC_TEMPLATE_CLASS template class
00453 #else
00454 #define CRYPTOPP_EXTERN_STATIC_TEMPLATE_CLASS extern template class
00455 #endif
00456 
00457 #if defined(CRYPTOPP_MANUALLY_INSTANTIATE_TEMPLATES) && !defined(CRYPTOPP_EXPORTS)
00458 #define CRYPTOPP_STATIC_TEMPLATE_CLASS template class
00459 #else
00460 #define CRYPTOPP_STATIC_TEMPLATE_CLASS CRYPTOPP_EXTERN_STATIC_TEMPLATE_CLASS
00461 #endif
00462 
00463 #endif

Generated on Tue Jan 4 2011 for Crypto++ by  doxygen 1.7.1