代码搜索:cryptlib

找到约 3,723 项符合「cryptlib」的源代码

代码结果 3,723
www.eeworm.com/read/480720/6660295

h safer.h

#ifndef CRYPTOPP_SAFER_H #define CRYPTOPP_SAFER_H #include "cryptlib.h" #include "misc.h" NAMESPACE_BEGIN(CryptoPP) class SAFER : public BlockTransformation { public: enum {BLOCKSIZE=8,
www.eeworm.com/read/480720/6660318

h rng.h

#ifndef CRYPTOPP_RNG_H #define CRYPTOPP_RNG_H #include "cryptlib.h" #include "filters.h" NAMESPACE_BEGIN(CryptoPP) // linear congruential generator // originally by William S. England /
www.eeworm.com/read/480720/6660340

h forkjoin.h

#ifndef CRYPTOPP_FORKJOIN_H #define CRYPTOPP_FORKJOIN_H #include "cryptlib.h" #include "filters.h" #include "queue.h" NAMESPACE_BEGIN(CryptoPP) class Fork : public BufferedTransformation
www.eeworm.com/read/480720/6660360

h square.h

#ifndef CRYPTOPP_SQUARE_H #define CRYPTOPP_SQUARE_H #include "config.h" #include "cryptlib.h" #include "misc.h" NAMESPACE_BEGIN(CryptoPP) class SquareBase : public BlockTransformation {
www.eeworm.com/read/410595/11275868

h rng.h

#ifndef RNG_H #define RNG_H #include "cryptlib.h" // linear congruential generator // originally by William S. England // do not use for cryptographic purposes class LC_RNG : public Rand
www.eeworm.com/read/410595/11275925

h bench.h

#ifndef BENCH_H #define BENCH_H #include "cryptlib.h" void BenchMarkAll(long length=1024L); float BenchMark(BlockTransformation &cipher, long length); float BenchMark(StreamCipher &cipher, lo
www.eeworm.com/read/410595/11275931

h diamond.h

#ifndef DIAMOND_H #define DIAMOND_H #include "cryptlib.h" #include "misc.h" #include "crc.h" class DiamondBase : public BlockTransformation { public: DiamondBase(const byte *key, unsig
www.eeworm.com/read/410595/11275934

h blowfish.h

#ifndef BLOWFISH_H #define BLOWFISH_H #include "cryptlib.h" #include "misc.h" class Blowfish : public BlockTransformation { public: Blowfish(const byte *key_string, unsigned int keyleng
www.eeworm.com/read/410595/11276023

h forkjoin.h

#ifndef FORKJOIN_H #define FORKJOIN_H #include "cryptlib.h" #include "filters.h" class Fork : public BufferedTransformation { public: Fork(int number_of_outports); Fork(int number_
www.eeworm.com/read/410595/11276072

h pipeline.h

#ifndef PIPELINE_H #define PIPELINE_H #include "cryptlib.h" // if you change this next constant, be sure to change the constructor as well. const int PIPELINE_MAX_FILTERS=10; class Pipeline