亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? simple.h

?? 常用字符串hash算法
?? H
字號:
// simple.h - written and placed in the public domain by Wei Dai/*! \file 	Simple non-interface classes derived from classes in cryptlib.h.*/#ifndef CRYPTOPP_SIMPLE_H#define CRYPTOPP_SIMPLE_H#include "cryptlib.h"#include "misc.h"NAMESPACE_BEGIN(CryptoPP)template <class BASE, class ALGORITHM_INFO = BASE>class AlgorithmImpl : public BASE{public:	std::string AlgorithmName() const {return ALGORITHM_INFO::StaticAlgorithmName();}};//! .class InvalidKeyLength : public InvalidArgument{public:	explicit InvalidKeyLength(const std::string &algorithm, unsigned int length) : InvalidArgument(algorithm + ": " + IntToString(length) + " is not a valid key length") {}};//! .class InvalidRounds : public InvalidArgument{public:	explicit InvalidRounds(const std::string &algorithm, unsigned int rounds) : InvalidArgument(algorithm + ": " + IntToString(rounds) + " is not a valid number of rounds") {}};class HashTransformationWithDefaultTruncation : public HashTransformation{public:	virtual void Final(byte *digest) =0;	void TruncatedFinal(byte *digest, unsigned int digestSize);};//! .// TODO: look into this virtual inheritanceclass ASN1CryptoMaterial : virtual public ASN1Object, virtual public CryptoMaterial{public:	void Save(BufferedTransformation &bt) const		{BEREncode(bt);}	void Load(BufferedTransformation &bt)		{BERDecode(bt);}};// *****************************template <class T>class Bufferless : public T{public:	Bufferless() {}	Bufferless(BufferedTransformation *q) : T(q) {}	bool IsolatedFlush(bool hardFlush, bool blocking) {return false;}};template <class T>class Unflushable : public T{public:	Unflushable() {}	Unflushable(BufferedTransformation *q) : T(q) {}	bool Flush(bool completeFlush, int propagation=-1, bool blocking=true)		{return ChannelFlush(NULL_CHANNEL, completeFlush, propagation);}	bool IsolatedFlush(bool hardFlush, bool blocking)		{assert(false); return false;}	bool ChannelFlush(const std::string &channel, bool hardFlush, int propagation=-1, bool blocking=true)	{		if (hardFlush && !InputBufferIsEmpty())			throw CannotFlush("Unflushable<T>: this object has buffered input that cannot be flushed");		else 		{			BufferedTransformation *attached = AttachedTransformation();			return attached && propagation ? attached->ChannelFlush(channel, hardFlush, propagation-1, blocking) : false;		}	}protected:	virtual bool InputBufferIsEmpty() const {return false;}};template <class T>class InputRejecting : public T{public:	InputRejecting() {}	InputRejecting(BufferedTransformation *q) : T(q) {}protected:	struct InputRejected : public NotImplemented		{InputRejected() : NotImplemented("BufferedTransformation: this object doesn't allow input") {}};	// shouldn't be calling these functions on this class	unsigned int Put2(const byte *begin, unsigned int length, int messageEnd, bool blocking)		{throw InputRejected();}	bool IsolatedFlush(bool, bool) {return false;}	bool IsolatedMessageSeriesEnd(bool) {throw InputRejected();}	unsigned int ChannelPut2(const std::string &channel, const byte *begin, unsigned int length, int messageEnd, bool blocking)		{throw InputRejected();}	bool ChannelMessageSeriesEnd(const std::string &, int, bool) {throw InputRejected();}};template <class T>class CustomSignalPropagation : public T{public:	CustomSignalPropagation() {}	CustomSignalPropagation(BufferedTransformation *q) : T(q) {}	virtual void Initialize(const NameValuePairs &parameters=g_nullNameValuePairs, int propagation=-1) =0;	virtual bool Flush(bool hardFlush, int propagation=-1, bool blocking=true) =0;private:	void IsolatedInitialize(const NameValuePairs &parameters) {assert(false);}	bool IsolatedFlush(bool hardFlush, bool blocking) {assert(false); return false;}};template <class T>class Multichannel : public CustomSignalPropagation<T>{public:	Multichannel() {}	Multichannel(BufferedTransformation *q) : CustomSignalPropagation<T>(q) {}	void Initialize(const NameValuePairs &parameters, int propagation)		{ChannelInitialize(NULL_CHANNEL, parameters, propagation);}	bool Flush(bool hardFlush, int propagation=-1, bool blocking=true)		{return ChannelFlush(NULL_CHANNEL, hardFlush, propagation, blocking);}	bool MessageSeriesEnd(int propagation=-1, bool blocking=true)		{return ChannelMessageSeriesEnd(NULL_CHANNEL, propagation, blocking);}	byte * CreatePutSpace(unsigned int &size)		{return ChannelCreatePutSpace(NULL_CHANNEL, size);}	unsigned int Put2(const byte *begin, unsigned int length, int messageEnd, bool blocking)		{return ChannelPut2(NULL_CHANNEL, begin, length, messageEnd, blocking);}	unsigned int PutModifiable2(byte *inString, unsigned int length, int messageEnd, bool blocking)		{return ChannelPutModifiable2(NULL_CHANNEL, inString, length, messageEnd, blocking);}//	void ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1)//		{PropagateMessageSeriesEnd(propagation, channel);}	byte * ChannelCreatePutSpace(const std::string &channel, unsigned int &size)		{size = 0; return NULL;}	bool ChannelPutModifiable(const std::string &channel, byte *inString, unsigned int length)		{ChannelPut(channel, inString, length); return false;}	virtual unsigned int ChannelPut2(const std::string &channel, const byte *begin, unsigned int length, int messageEnd, bool blocking) =0;	unsigned int ChannelPutModifiable2(const std::string &channel, byte *begin, unsigned int length, int messageEnd, bool blocking)		{return ChannelPut2(channel, begin, length, messageEnd, blocking);}	virtual void ChannelInitialize(const std::string &channel, const NameValuePairs &parameters=g_nullNameValuePairs, int propagation=-1) =0;	virtual bool ChannelFlush(const std::string &channel, bool hardFlush, int propagation=-1, bool blocking=true) =0;};template <class T>class AutoSignaling : public T{public:	AutoSignaling(int propagation=-1) : m_autoSignalPropagation(propagation) {}	AutoSignaling(BufferedTransformation *q, int propagation=-1) : T(q), m_autoSignalPropagation(propagation) {}	void SetAutoSignalPropagation(int propagation)		{m_autoSignalPropagation = propagation;}	int GetAutoSignalPropagation() const		{return m_autoSignalPropagation;}private:	int m_autoSignalPropagation;};//! A BufferedTransformation that only contains pre-existing data as "output"class Store : public AutoSignaling<InputRejecting<BufferedTransformation> >{public:	Store() : m_messageEnd(false) {}	void IsolatedInitialize(const NameValuePairs &parameters)	{		m_messageEnd = false;		StoreInitialize(parameters);	}	unsigned int NumberOfMessages() const {return m_messageEnd ? 0 : 1;}	bool GetNextMessage();	unsigned int CopyMessagesTo(BufferedTransformation &target, unsigned int count=UINT_MAX, const std::string &channel=NULL_CHANNEL) const;protected:	virtual void StoreInitialize(const NameValuePairs &parameters) =0;	bool m_messageEnd;};//! A BufferedTransformation that doesn't produce any retrievable outputclass Sink : public BufferedTransformation{protected:	// make these functions protected to help prevent unintentional calls to them	BufferedTransformation::Get;	BufferedTransformation::Peek;	BufferedTransformation::TransferTo;	BufferedTransformation::CopyTo;	BufferedTransformation::CopyRangeTo;	BufferedTransformation::TransferMessagesTo;	BufferedTransformation::CopyMessagesTo;	BufferedTransformation::TransferAllTo;	BufferedTransformation::CopyAllTo;	unsigned int TransferTo2(BufferedTransformation &target, unsigned long &transferBytes, const std::string &channel=NULL_CHANNEL, bool blocking=true)		{transferBytes = 0; return 0;}	unsigned int CopyRangeTo2(BufferedTransformation &target, unsigned long &begin, unsigned long end=ULONG_MAX, const std::string &channel=NULL_CHANNEL, bool blocking=true) const		{return 0;}};class BitBucket : public Bufferless<Sink>{public:	std::string AlgorithmName() const {return "BitBucket";}	void IsolatedInitialize(const NameValuePairs &parameters) {}	unsigned int Put2(const byte *begin, unsigned int length, int messageEnd, bool blocking)		{return 0;}};NAMESPACE_END#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产aⅴ天堂久久| 国产人成一区二区三区影院| 亚洲色欲色欲www| 成人精品国产一区二区4080| 亚洲国产高清aⅴ视频| 国产成人久久精品77777最新版本| 久久伊99综合婷婷久久伊| 九九热在线视频观看这里只有精品| 欧美一级艳片视频免费观看| 久久99日本精品| 国产精品网站一区| 色噜噜狠狠成人网p站| 一区二区三区加勒比av| 欧美精品亚洲二区| 经典三级一区二区| 国产成人精品三级麻豆| 91免费视频网| 亚洲欧美另类在线| 2023国产精品自拍| 精品电影一区二区| 精品久久久网站| 欧美国产丝袜视频| 亚洲人成网站在线| 亚洲一二三区在线观看| 91国偷自产一区二区三区观看 | 国产精品欧美综合在线| 99国产欧美久久久精品| 五月天婷婷综合| 精品国产百合女同互慰| 99精品偷自拍| 另类小说欧美激情| 国产精品麻豆久久久| 欧美日韩一本到| 国产在线视频一区二区| 亚洲激情自拍视频| 日韩精品一区二区三区在线观看| 波多野结衣视频一区| 日韩—二三区免费观看av| 国产日产亚洲精品系列| 欧美日韩免费一区二区三区视频| 国产精品中文字幕日韩精品 | 亚洲国产aⅴ成人精品无吗| 337p粉嫩大胆色噜噜噜噜亚洲| 9人人澡人人爽人人精品| 美女视频网站黄色亚洲| 亚洲乱码中文字幕| 国产亚洲视频系列| 制服视频三区第一页精品| 9l国产精品久久久久麻豆| 免播放器亚洲一区| 亚洲综合在线电影| 久久久99精品免费观看不卡| 制服丝袜亚洲网站| 欧美在线观看一二区| 成人一区二区在线观看| 狠狠久久亚洲欧美| 五月婷婷综合网| 一区二区三区91| 中国色在线观看另类| 2020国产成人综合网| 欧美午夜理伦三级在线观看| 91小视频在线免费看| 国产激情一区二区三区四区| 久久精品久久精品| 婷婷成人综合网| 亚洲一级在线观看| 亚洲另类在线制服丝袜| 国产欧美一区二区精品久导航| 精品久久久久一区| 日韩三级.com| 欧美大度的电影原声| 日韩一区二区免费电影| 欧美精品久久天天躁| 欧美精品在线观看播放| 欧美日韩精品免费观看视频| 欧美性猛片aaaaaaa做受| 91浏览器入口在线观看| 一本久久精品一区二区| 91色综合久久久久婷婷| 色婷婷香蕉在线一区二区| 91网站最新网址| 色婷婷久久99综合精品jk白丝| 91视频在线观看免费| 91网站在线播放| 色狠狠一区二区| 欧美日韩国产一级| 91精品国模一区二区三区| 日韩视频在线你懂得| 日韩一级片网站| 久久久午夜精品理论片中文字幕| 久久久久久久综合| 国产精品视频观看| 亚洲精品国产无天堂网2021| 亚洲无人区一区| 日本伊人精品一区二区三区观看方式| 蜜桃视频一区二区| 国产原创一区二区三区| eeuss影院一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 欧美日韩在线综合| 欧美mv和日韩mv国产网站| 国产日产欧美一区二区视频| 亚洲欧美日韩国产成人精品影院| 亚洲成av人影院在线观看网| 亚洲444eee在线观看| 日韩成人dvd| 福利视频网站一区二区三区| 色狠狠av一区二区三区| 在线不卡中文字幕| 国产无一区二区| 亚洲综合色婷婷| 久久99热狠狠色一区二区| 99在线精品免费| 91精品国产免费| 国产精品久线观看视频| 亚洲一区二区三区四区在线| 激情综合亚洲精品| 91国偷自产一区二区三区成为亚洲经典 | 色综合中文综合网| 中文字幕亚洲综合久久菠萝蜜| 一区二区三区蜜桃网| 蜜臀91精品一区二区三区| 成人精品免费看| 91精品在线一区二区| 国产精品三级久久久久三级| 三级在线观看一区二区| 成人毛片在线观看| 欧美一卡二卡在线| 亚洲色图视频网| 精品在线观看视频| 在线亚洲人成电影网站色www| 久久综合国产精品| 婷婷久久综合九色综合伊人色| 粉嫩久久99精品久久久久久夜| 欧美日本视频在线| 亚洲视频一二三区| 黄色成人免费在线| 欧美亚洲综合在线| 国产精品麻豆一区二区| 精彩视频一区二区三区| 精品视频1区2区3区| 最新成人av在线| 国产精品正在播放| 日韩一级大片在线| 亚洲午夜久久久久久久久电影网 | 综合av第一页| 日本欧美一区二区| 欧洲另类一二三四区| 欧美国产精品专区| 狠狠狠色丁香婷婷综合激情 | 日韩三级在线观看| 午夜欧美电影在线观看| 色婷婷综合久色| 国产酒店精品激情| 日韩一卡二卡三卡四卡| 日韩精品免费专区| 国产亚洲污的网站| 免费看欧美女人艹b| 欧美日韩中文字幕一区二区| 亚洲欧洲精品一区二区三区| 成人在线综合网站| 国产丝袜欧美中文另类| 美腿丝袜在线亚洲一区 | 国产一区二区三区蝌蚪| 日韩精品一区二区三区视频| 日韩av中文字幕一区二区三区 | 91亚洲精品乱码久久久久久蜜桃| 国产精品网曝门| 不卡的看片网站| 1024国产精品| 91蝌蚪porny| 亚洲最大成人网4388xx| 欧美性大战久久| 亚洲激情第一区| 欧洲色大大久久| 五月激情六月综合| 日韩一区二区免费电影| 激情亚洲综合在线| 国产日韩欧美精品电影三级在线| 风间由美一区二区av101| 亚洲国产精品成人综合色在线婷婷| 国产成人在线视频网址| 中文字幕免费一区| 99久久综合狠狠综合久久| 亚洲精品高清在线| 欧美日韩成人综合| 激情综合一区二区三区| 中文字幕av在线一区二区三区| 91色九色蝌蚪| 亚洲第一狼人社区| 精品国产一区久久| 成人午夜视频福利| 一区二区三区高清不卡| 8x8x8国产精品| 国产综合一区二区| 一区在线中文字幕| 欧美高清视频www夜色资源网| 秋霞午夜av一区二区三区| 国产欧美一区二区三区鸳鸯浴 | 欧美久久久久久久久|