template_instnt.cpp

来自「MySQL源码文件5.X系列, 可自已编译到服务器」· C++ 代码 · 共 83 行

CPP
83
字号
/*   Copyright (C) 2000-2007 MySQL AB   This program is free software; you can redistribute it and/or modify   it under the terms of the GNU General Public License as published by   the Free Software Foundation; version 2 of the License.   This program is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   You should have received a copy of the GNU General Public License   along with this program; see the file COPYING. If not, write to the   Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,   MA  02110-1301  USA.*//*  Explicit template instantiation requests  */#include "runtime.hpp"#include "integer.hpp"#include "rsa.hpp"#include "sha.hpp"#include "md5.hpp"#include "hmac.hpp"#include "ripemd.hpp"#include "pwdbased.hpp"#include "algebra.hpp"#include "vector.hpp"#include "hash.hpp"#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATIONnamespace TaoCrypt {#if defined(SSE2_INTRINSICS_AVAILABLE)template AlignedAllocator<unsigned int>::pointer StdReallocate<unsigned int, AlignedAllocator<unsigned int> >(AlignedAllocator<unsigned int>&, unsigned int*, AlignedAllocator<unsigned int>::size_type, AlignedAllocator<unsigned int>::size_type, bool);#endiftemplate class RSA_Decryptor<RSA_BlockType2>;template class RSA_Encryptor<RSA_BlockType1>;template class RSA_Encryptor<RSA_BlockType2>;template void tcDelete<HASH>(HASH*);template void tcDelete<Integer>(Integer*);template void tcArrayDelete<byte>(byte*);template AllocatorWithCleanup<byte>::pointer StdReallocate<byte, AllocatorWithCleanup<byte> >(AllocatorWithCleanup<byte>&, byte*, AllocatorWithCleanup<byte>::size_type, AllocatorWithCleanup<byte>::size_type, bool);template void tcArrayDelete<word>(word*);template AllocatorWithCleanup<word>::pointer StdReallocate<word, AllocatorWithCleanup<word> >(AllocatorWithCleanup<word>&, word*, AllocatorWithCleanup<word>::size_type, AllocatorWithCleanup<word>::size_type, bool);#ifndef TAOCRYPT_SLOW_WORD64 // defined when word != word32template void tcArrayDelete<word32>(word32*);template AllocatorWithCleanup<word32>::pointer StdReallocate<word32, AllocatorWithCleanup<word32> >(AllocatorWithCleanup<word32>&, word32*, AllocatorWithCleanup<word32>::size_type, AllocatorWithCleanup<word32>::size_type, bool);#endiftemplate void tcArrayDelete<char>(char*);template class PBKDF2_HMAC<SHA>;template class HMAC<MD5>;template class HMAC<SHA>;template class HMAC<RIPEMD160>;}namespace mySTL {template vector<TaoCrypt::Integer>* uninit_fill_n<vector<TaoCrypt::Integer>*, size_t, vector<TaoCrypt::Integer> >(vector<TaoCrypt::Integer>*, size_t, vector<TaoCrypt::Integer> const&);template void destroy<vector<TaoCrypt::Integer>*>(vector<TaoCrypt::Integer>*, vector<TaoCrypt::Integer>*);template TaoCrypt::Integer* uninit_copy<TaoCrypt::Integer*, TaoCrypt::Integer*>(TaoCrypt::Integer*, TaoCrypt::Integer*, TaoCrypt::Integer*);template TaoCrypt::Integer* uninit_fill_n<TaoCrypt::Integer*, size_t, TaoCrypt::Integer>(TaoCrypt::Integer*, size_t, TaoCrypt::Integer const&);template void destroy<TaoCrypt::Integer*>(TaoCrypt::Integer*, TaoCrypt::Integer*);template TaoCrypt::byte* GetArrayMemory<TaoCrypt::byte>(size_t);template void FreeArrayMemory<TaoCrypt::byte>(TaoCrypt::byte*);template TaoCrypt::Integer* GetArrayMemory<TaoCrypt::Integer>(size_t);template void FreeArrayMemory<TaoCrypt::Integer>(TaoCrypt::Integer*);template vector<TaoCrypt::Integer>* GetArrayMemory<vector<TaoCrypt::Integer> >(size_t);template void FreeArrayMemory<vector<TaoCrypt::Integer> >(vector<TaoCrypt::Integer>*);template void FreeArrayMemory<void>(void*);}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?