mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
Move telpate instantiations of taocrypt objects to taocrypt/template_instnt.cpp
This commit is contained in:
parent
752dd29157
commit
7af32b0748
2 changed files with 3 additions and 7 deletions
|
|
@ -35,13 +35,6 @@
|
|||
#include "openssl/ssl.h"
|
||||
|
||||
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
|
||||
#if !defined(USE_CRYPTOPP_LIB)
|
||||
namespace TaoCrypt {
|
||||
template class HMAC<MD5>;
|
||||
template class HMAC<SHA>;
|
||||
template class HMAC<RIPEMD160>;
|
||||
}
|
||||
#endif // USE_CRYPTOPP_LIB
|
||||
|
||||
namespace mySTL {
|
||||
template class list<unsigned char*>;
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
#include "sha.hpp"
|
||||
#include "md5.hpp"
|
||||
#include "hmac.hpp"
|
||||
#include "ripemd.hpp"
|
||||
#include "pwdbased.hpp"
|
||||
#include "algebra.hpp"
|
||||
#include "vector.hpp"
|
||||
|
|
@ -62,6 +63,8 @@ template void tcArrayDelete<char>(char*);
|
|||
template class PBKDF2_HMAC<SHA>;
|
||||
template class HMAC<MD5>;
|
||||
template class HMAC<SHA>;
|
||||
template class HMAC<RIPEMD160>;
|
||||
|
||||
}
|
||||
|
||||
namespace mySTL {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue