File indexing completed on 2025-01-18 09:55:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef CRYPTOPP_SECBLOCKFWD_H
0011 #define CRYPTOPP_SECBLOCKFWD_H
0012
0013 #include "config.h"
0014
0015 NAMESPACE_BEGIN(CryptoPP)
0016
0017 template <class T, class A>
0018 class SecBlock;
0019
0020 template <class T, bool A>
0021 class AllocatorWithCleanup;
0022
0023 typedef SecBlock<byte, AllocatorWithCleanup<byte, false> > SecByteBlock;
0024 typedef SecBlock<word, AllocatorWithCleanup<word, false> > SecWordBlock;
0025 typedef SecBlock<byte, AllocatorWithCleanup<byte, true> > AlignedSecByteBlock;
0026
0027 NAMESPACE_END
0028
0029 #endif