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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cryptlib.h

?? 研讀AxCrypt對加解密的處理方法
?? H
?? 第 1 頁 / 共 5 頁
字號:
		//! returns true if NumberOfMessages() > 0
		virtual bool AnyMessages() const;
		//! start retrieving the next message
		/*!
			Returns false if no more messages exist or this message 
			is not completely retrieved.
		*/
		virtual bool GetNextMessage();
		//! skip count number of messages
		virtual unsigned int SkipMessages(unsigned int count=UINT_MAX);
		//!
		unsigned int TransferMessagesTo(BufferedTransformation &target, unsigned int count=UINT_MAX, const std::string &channel=NULL_CHANNEL)
			{TransferMessagesTo2(target, count, channel); return count;}
		//!
		unsigned int CopyMessagesTo(BufferedTransformation &target, unsigned int count=UINT_MAX, const std::string &channel=NULL_CHANNEL) const;

		//!
		virtual void SkipAll();
		//!
		void TransferAllTo(BufferedTransformation &target, const std::string &channel=NULL_CHANNEL)
			{TransferAllTo2(target, channel);}
		//!
		void CopyAllTo(BufferedTransformation &target, const std::string &channel=NULL_CHANNEL) const;

		virtual bool GetNextMessageSeries() {return false;}
		virtual unsigned int NumberOfMessagesInThisSeries() const {return NumberOfMessages();}
		virtual unsigned int NumberOfMessageSeries() const {return 0;}
	//@}

	//!	\name NON-BLOCKING TRANSFER OF OUTPUT
	//@{
		virtual unsigned int TransferTo2(BufferedTransformation &target, unsigned long &byteCount, const std::string &channel=NULL_CHANNEL, bool blocking=true) =0;
		virtual unsigned int CopyRangeTo2(BufferedTransformation &target, unsigned long &begin, unsigned long end=ULONG_MAX, const std::string &channel=NULL_CHANNEL, bool blocking=true) const =0;
		unsigned int TransferMessagesTo2(BufferedTransformation &target, unsigned int &messageCount, const std::string &channel=NULL_CHANNEL, bool blocking=true);
		unsigned int TransferAllTo2(BufferedTransformation &target, const std::string &channel=NULL_CHANNEL, bool blocking=true);
	//@}

	//!	\name CHANNELS
	//@{
		struct NoChannelSupport : public NotImplemented
			{NoChannelSupport() : NotImplemented("BufferedTransformation: this object doesn't support multiple channels") {}};

		unsigned int ChannelPut(const std::string &channel, byte inByte, bool blocking=true)
			{return ChannelPut(channel, &inByte, 1, blocking);}
		unsigned int ChannelPut(const std::string &channel, const byte *inString, unsigned int length, bool blocking=true)
			{return ChannelPut2(channel, inString, length, 0, blocking);}

		unsigned int ChannelPutModifiable(const std::string &channel, byte *inString, unsigned int length, bool blocking=true)
			{return ChannelPutModifiable2(channel, inString, length, 0, blocking);}

		unsigned int ChannelPutWord16(const std::string &channel, word16 value, ByteOrder order=BIG_ENDIAN_ORDER, bool blocking=true);
		unsigned int ChannelPutWord32(const std::string &channel, word32 value, ByteOrder order=BIG_ENDIAN_ORDER, bool blocking=true);

		bool ChannelMessageEnd(const std::string &channel, int propagation=-1, bool blocking=true)
			{return !!ChannelPut2(channel, NULL, 0, propagation < 0 ? -1 : propagation+1, blocking);}
		unsigned int ChannelPutMessageEnd(const std::string &channel, const byte *inString, unsigned int length, int propagation=-1, bool blocking=true)
			{return ChannelPut2(channel, inString, length, propagation < 0 ? -1 : propagation+1, blocking);}

		virtual byte * ChannelCreatePutSpace(const std::string &channel, unsigned int &size);

		virtual unsigned int ChannelPut2(const std::string &channel, const byte *begin, unsigned int length, int messageEnd, bool blocking);
		virtual unsigned int ChannelPutModifiable2(const std::string &channel, byte *begin, unsigned int length, int messageEnd, bool blocking);

		virtual bool ChannelFlush(const std::string &channel, bool hardFlush, int propagation=-1, bool blocking=true);
		virtual bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true);

		virtual void SetRetrievalChannel(const std::string &channel);
	//@}

	//!	\name ATTACHMENT
	/*! Some BufferedTransformation objects (e.g. Filter objects)
		allow other BufferedTransformation objects to be attached. When
		this is done, the first object instead of buffering its output,
		sents that output to the attached object as input. The entire
		attachment chain is deleted when the anchor object is destructed.
	*/
	//@{
		//! returns whether this object allows attachment
		virtual bool Attachable() {return false;}
		//! returns the object immediately attached to this object or NULL for no attachment
		virtual BufferedTransformation *AttachedTransformation() {assert(!Attachable()); return 0;}
		//!
		virtual const BufferedTransformation *AttachedTransformation() const
			{return const_cast<BufferedTransformation *>(this)->AttachedTransformation();}
		//! delete the current attachment chain and replace it with newAttachment
		virtual void Detach(BufferedTransformation *newAttachment = 0)
			{assert(!Attachable()); throw NotImplemented("BufferedTransformation: this object is not attachable");}
		//! add newAttachment to the end of attachment chain
		virtual void Attach(BufferedTransformation *newAttachment);
	//@}

protected:
	static int DecrementPropagation(int propagation)
		{return propagation != 0 ? propagation - 1 : 0;}
};

//! returns a reference to a BufferedTransformation object that discards all input
BufferedTransformation & TheBitBucket();

//! interface for crypto material, such as public and private keys, and crypto parameters

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CryptoMaterial : public NameValuePairs
{
public:
	//! exception thrown when invalid crypto material is detected
	class CRYPTOPP_DLL InvalidMaterial : public InvalidDataFormat
	{
	public:
		explicit InvalidMaterial(const std::string &s) : InvalidDataFormat(s) {}
	};

	//! assign values from source to this object
	/*! \note This function can be used to create a public key from a private key. */
	virtual void AssignFrom(const NameValuePairs &source) =0;

	//! check this object for errors
	/*! \param level denotes the level of thoroughness:
		0 - using this object won't cause a crash or exception (rng is ignored)
		1 - this object will probably function (encrypt, sign, etc.) correctly (but may not check for weak keys and such)
		2 - make sure this object will function correctly, and do reasonable security checks
		3 - do checks that may take a long time
		\return true if the tests pass */
	virtual bool Validate(RandomNumberGenerator &rng, unsigned int level) const =0;

	//! throws InvalidMaterial if this object fails Validate() test
	virtual void ThrowIfInvalid(RandomNumberGenerator &rng, unsigned int level) const
		{if (!Validate(rng, level)) throw InvalidMaterial("CryptoMaterial: this object contains invalid values");}

//	virtual std::vector<std::string> GetSupportedFormats(bool includeSaveOnly=false, bool includeLoadOnly=false);

	//! save key into a BufferedTransformation
	virtual void Save(BufferedTransformation &bt) const
		{throw NotImplemented("CryptoMaterial: this object does not support saving");}

	//! load key from a BufferedTransformation
	/*! \throws KeyingErr if decode fails
		\note Generally does not check that the key is valid.
			Call ValidateKey() or ThrowIfInvalidKey() to check that. */
	virtual void Load(BufferedTransformation &bt)
		{throw NotImplemented("CryptoMaterial: this object does not support loading");}

	//! \return whether this object supports precomputation
	virtual bool SupportsPrecomputation() const {return false;}
	//! do precomputation
	/*! The exact semantics of Precompute() is varies, but
		typically it means calculate a table of n objects
		that can be used later to speed up computation. */
	virtual void Precompute(unsigned int n)
		{assert(!SupportsPrecomputation()); throw NotImplemented("CryptoMaterial: this object does not support precomputation");}
	//! retrieve previously saved precomputation
	virtual void LoadPrecomputation(BufferedTransformation &storedPrecomputation)
		{assert(!SupportsPrecomputation()); throw NotImplemented("CryptoMaterial: this object does not support precomputation");}
	//! save precomputation for later use
	virtual void SavePrecomputation(BufferedTransformation &storedPrecomputation) const
		{assert(!SupportsPrecomputation()); throw NotImplemented("CryptoMaterial: this object does not support precomputation");}

	// for internal library use
	void DoQuickSanityCheck() const	{ThrowIfInvalid(NullRNG(), 0);}
};

//! interface for generatable crypto material, such as private keys and crypto parameters

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE GeneratableCryptoMaterial : virtual public CryptoMaterial
{
public:
	//! generate a random key or crypto parameters
	/*! \throws KeyingErr if algorithm parameters are invalid, or if a key can't be generated
		(e.g., if this is a public key object) */
	virtual void GenerateRandom(RandomNumberGenerator &rng, const NameValuePairs &params = g_nullNameValuePairs)
		{throw NotImplemented("GeneratableCryptoMaterial: this object does not support key/parameter generation");}

	//! calls the above function with a NameValuePairs object that just specifies "KeySize"
	void GenerateRandomWithKeySize(RandomNumberGenerator &rng, unsigned int keySize);
};

//! interface for public keys

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE PublicKey : virtual public CryptoMaterial
{
};

//! interface for private keys

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE PrivateKey : public GeneratableCryptoMaterial
{
};

//! interface for crypto prameters

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE CryptoParameters : public GeneratableCryptoMaterial
{
};

//! interface for asymmetric algorithms

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE AsymmetricAlgorithm : public Algorithm
{
public:
	//! returns a reference to the crypto material used by this object
	virtual CryptoMaterial & AccessMaterial() =0;
	//! returns a const reference to the crypto material used by this object
	virtual const CryptoMaterial & GetMaterial() const =0;

	//! for backwards compatibility, calls AccessMaterial().Load(bt)
	void BERDecode(BufferedTransformation &bt)
		{AccessMaterial().Load(bt);}
	//! for backwards compatibility, calls GetMaterial().Save(bt)
	void DEREncode(BufferedTransformation &bt) const
		{GetMaterial().Save(bt);}
};

//! interface for asymmetric algorithms using public keys

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE PublicKeyAlgorithm : public AsymmetricAlgorithm
{
public:
	// VC60 workaround: no co-variant return type
	CryptoMaterial & AccessMaterial() {return AccessPublicKey();}
	const CryptoMaterial & GetMaterial() const {return GetPublicKey();}

	virtual PublicKey & AccessPublicKey() =0;
	virtual const PublicKey & GetPublicKey() const {return const_cast<PublicKeyAlgorithm *>(this)->AccessPublicKey();}
};

//! interface for asymmetric algorithms using private keys

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE PrivateKeyAlgorithm : public AsymmetricAlgorithm
{
public:
	CryptoMaterial & AccessMaterial() {return AccessPrivateKey();}
	const CryptoMaterial & GetMaterial() const {return GetPrivateKey();}

	virtual PrivateKey & AccessPrivateKey() =0;
	virtual const PrivateKey & GetPrivateKey() const {return const_cast<PrivateKeyAlgorithm *>(this)->AccessPrivateKey();}
};

//! interface for key agreement algorithms

class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE KeyAgreementAlgorithm : public AsymmetricAlgorithm
{
public:
	CryptoMaterial & AccessMaterial() {return AccessCryptoParameters();}
	const CryptoMaterial & GetMaterial() const {return GetCryptoParameters();}

	virtual CryptoParameters & AccessCryptoParameters() =0;
	virtual const CryptoParameters & GetCryptoParameters() const {return const_cast<KeyAgreementAlgorithm *>(this)->AccessCryptoParameters();}
};

//! interface for public-key encryptors and decryptors

/*! This class provides an interface common to encryptors and decryptors
	for querying their plaintext and ciphertext lengths.
*/
class CRYPTOPP_DLL CRYPTOPP_NO_VTABLE PK_CryptoSystem
{
public:
	virtual ~PK_CryptoSystem() {}

	//! maximum length of plaintext for a given ciphertext length
	/*! \note This function returns 0 if ciphertextLength is not valid (too long or too short). */
	virtual unsigned int MaxPlaintextLength(unsigned int ciphertextLength) const =0;

	//! calculate length of ciphertext given length of plaintext
	/*! \note This function returns 0 if plaintextLength is not valid (too long). */
	virtual unsigned int CiphertextLength(unsigned int plaintextLength) const =0;

	//! this object supports the use of the parameter with the given name
	/*! some possible parameter names: EncodingParameters, KeyDerivationParameters */
	virtual bool ParameterSupported(const char *name) const =0;

	//! return fixed ciphertext length, if one exists, otherwise return 0
	/*! \note "Fixed" here means length of ciphertext does not depend on length of plaintext.
		It usually does depend on the key length. */
	virtual unsigned int FixedCiphertextLength() const {return 0;}

	//! return maximum plaintext length given the fixed ciphertext length, if one exists, otherwise return 0
	virtual unsigned int FixedMaxPlaintextLength() const {return 0;}

#ifdef CRYPTOPP_MAINTAIN_BACKWARDS_COMPATIBILITY
	unsigned int MaxPlainTextLength(unsigned int cipherTextLength) const {return MaxPlaintextLength(cipherTextLength);}
	unsigned int CipherTextLength(unsigned int plainTextLength) const {return CiphertextLength(plainTextLength);}
#endif
};

//! interface for public-key encryptors

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
69成人精品免费视频| 日韩欧美一级精品久久| 久久99国产精品免费| 亚洲欧美激情视频在线观看一区二区三区| 欧美一级高清片在线观看| 91性感美女视频| 国产盗摄一区二区| 日韩国产成人精品| 亚洲一区二区三区中文字幕在线| 久久久久九九视频| 欧美tk—视频vk| 欧美精品v日韩精品v韩国精品v| 成人精品小蝌蚪| 国内一区二区视频| 蜜臀精品久久久久久蜜臀| 一区二区三区不卡视频在线观看| 国产欧美一二三区| 精品国产一区二区国模嫣然| 911精品国产一区二区在线| 色先锋久久av资源部| 成人精品国产免费网站| 国产成人精品www牛牛影视| 久久精品99国产精品日本| 香蕉影视欧美成人| 亚洲在线中文字幕| 亚洲精品视频在线观看网站| 中文字幕第一区综合| 中文幕一区二区三区久久蜜桃| 2017欧美狠狠色| 日韩精品一区二区三区三区免费| 欧美日韩免费高清一区色橹橹| 99国产欧美另类久久久精品| 高潮精品一区videoshd| 成人在线视频一区二区| 国产成人免费在线视频| 丰满少妇在线播放bd日韩电影| 精品一区二区日韩| 久久99国产精品久久99| 麻豆极品一区二区三区| 精品一区二区免费视频| 国产一区二区三区精品欧美日韩一区二区三区 | 国产精品人成在线观看免费| 久久久午夜精品理论片中文字幕| 精品久久一区二区三区| 久久人人97超碰com| 国产日韩精品视频一区| 亚洲国产激情av| 国产精品久久久久久亚洲毛片| 国产精品久久久久永久免费观看 | 欧美猛男gaygay网站| 欧美精品aⅴ在线视频| 欧美精品 国产精品| 欧美一区二区三区精品| 精品美女在线播放| 国产亚洲欧美在线| 国产精品久久看| 亚洲一区免费在线观看| 日av在线不卡| 国产自产2019最新不卡| 成人永久看片免费视频天堂| 色噜噜夜夜夜综合网| 欧美军同video69gay| 日韩欧美第一区| 欧美激情在线一区二区| 亚洲视频网在线直播| 亚洲妇女屁股眼交7| 麻豆成人91精品二区三区| 国产一区 二区 三区一级| 99天天综合性| 56国语精品自产拍在线观看| 国产午夜亚洲精品午夜鲁丝片| 中文字幕一区二| 视频一区二区三区入口| 国产精品一二三四五| 一本久久a久久免费精品不卡| 欧美一区二区日韩一区二区| 久久久亚洲高清| 一级女性全黄久久生活片免费| 日韩av网站免费在线| 大胆欧美人体老妇| 欧美日韩一级视频| 久久夜色精品一区| 亚洲成人自拍偷拍| 高清不卡一二三区| 日韩一级片在线播放| 中文字幕中文乱码欧美一区二区| 亚洲午夜av在线| 成人精品视频一区| 欧美sm美女调教| 亚洲日本护士毛茸茸| 狠狠狠色丁香婷婷综合久久五月| 99视频国产精品| 欧美一区二区久久久| 国产精品久久久久久久久免费丝袜 | 国产欧美日韩三级| 亚洲综合丝袜美腿| 国产精品1区二区.| 欧美精品第1页| 亚洲人成电影网站色mp4| 久久精品国产精品亚洲综合| 91老司机福利 在线| 2021中文字幕一区亚洲| 午夜精品久久久久久久99水蜜桃 | 欧美日韩精品久久久| 国产网红主播福利一区二区| 亚洲国产毛片aaaaa无费看 | 懂色av中文字幕一区二区三区| 欧美日韩三级在线| 最新日韩av在线| 国产一区在线不卡| 欧美一区二区在线看| 一区二区三区波多野结衣在线观看| 国产一区二区在线视频| 日韩一级高清毛片| 亚洲福利视频导航| 一本到一区二区三区| 亚洲素人一区二区| 国产a久久麻豆| 久久伊人蜜桃av一区二区| 麻豆成人久久精品二区三区小说| 欧美高清dvd| 亚洲成av人片观看| 在线观看日韩精品| 亚洲欧美国产毛片在线| 成人天堂资源www在线| 日本一区二区三区国色天香 | eeuss鲁片一区二区三区| 久久久影视传媒| 国产一区二区看久久| 欧美变态口味重另类| 精品一区二区三区av| www久久精品| 国产一区二区在线免费观看| 欧美大片一区二区| 国产主播一区二区三区| 久久久久99精品一区| 国产黄色精品视频| 中文一区二区完整视频在线观看| 成人性色生活片免费看爆迷你毛片| 久久久久99精品一区| 国产高清不卡二三区| 国产精品无遮挡| 99精品视频一区| 亚洲欧美一区二区三区久本道91| 91影视在线播放| 亚洲精品国产高清久久伦理二区| 在线观看日韩电影| 天天爽夜夜爽夜夜爽精品视频| 91麻豆精品国产自产在线| 蜜臀91精品一区二区三区| 精品国产免费一区二区三区香蕉| 国产盗摄视频一区二区三区| 国产精品久久久久一区| 在线观看日韩一区| 人人超碰91尤物精品国产| 精品国产乱码久久| 风间由美中文字幕在线看视频国产欧美| 国产欧美精品在线观看| 91国内精品野花午夜精品| 日本不卡免费在线视频| 欧美va日韩va| youjizz国产精品| 天堂成人免费av电影一区| 精品国产伦一区二区三区观看方式| 国产大陆a不卡| 亚洲国产裸拍裸体视频在线观看乱了| 欧美一级免费大片| 国产iv一区二区三区| 一区二区三区不卡在线观看| 欧美一级片免费看| 99久久久无码国产精品| 日韩精品国产精品| 国产精品色在线观看| 欧美日韩国产一区二区三区地区| 精品一区二区免费视频| 日韩伦理免费电影| 欧美一级黄色大片| 99久久99久久久精品齐齐| 日本亚洲欧美天堂免费| 亚洲国产精品成人综合色在线婷婷 | 亚洲一区二区在线免费观看视频| 欧美刺激午夜性久久久久久久| av在线不卡观看免费观看| 日韩avvvv在线播放| 国产清纯在线一区二区www| 欧美丝袜自拍制服另类| 大陆成人av片| 免费看日韩a级影片| 1024成人网| 精品日产卡一卡二卡麻豆| 色婷婷综合五月| 国产精品99精品久久免费| 性做久久久久久| 亚洲日本丝袜连裤袜办公室| 精品理论电影在线| 7777精品伊人久久久大香线蕉经典版下载 | 国产精品青草久久| 日韩一区二区免费在线观看| 色综合久久中文综合久久97| 国产成人精品亚洲777人妖|