1 Star 0 Fork 4

何庆/cryptopp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
secblockfwd.h 896 Bytes
一键复制 编辑 原始数据 按行查看 历史
// secblockfwd.h - written and placed in the public domain by Jeffrey Walton
/// \file secblockfwd.h
/// \brief Forward declarations for SecBlock
/// \details secblock.h and misc.h have a circular dependency. secblockfwd.h
/// allows the library to sidestep the circular dependency, and reference
/// SecBlock classes without the full implementation.
/// \since Crypto++ 8.3
#ifndef CRYPTOPP_SECBLOCKFWD_H
#define CRYPTOPP_SECBLOCKFWD_H
#include "config.h"
NAMESPACE_BEGIN(CryptoPP)
template <class T, class A>
class SecBlock;
template <class T, bool A>
class AllocatorWithCleanup;
typedef SecBlock<byte, AllocatorWithCleanup<byte, false> > SecByteBlock;
typedef SecBlock<word, AllocatorWithCleanup<word, false> > SecWordBlock;
typedef SecBlock<byte, AllocatorWithCleanup<byte, true> > AlignedSecByteBlock;
NAMESPACE_END
#endif // CRYPTOPP_SECBLOCKFWD_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lovekqd/cryptopp.git
git@gitee.com:lovekqd/cryptopp.git
lovekqd
cryptopp
cryptopp
master

搜索帮助