⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 emsa2.h

📁 lots Elliptic curve cryptography codes. Use Visual c++ to compile
💻 H
字号:
#ifndef CRYPTOPP_EMSA2_H#define CRYPTOPP_EMSA2_H/** \file	This file contains various padding schemes for public key algorithms.*/#include "cryptlib.h"#include "pubkey.h"#ifdef CRYPTOPP_IS_DLL#include "sha.h"#endifNAMESPACE_BEGIN(CryptoPP)template <class H> class EMSA2HashId{public:	static const byte id;};template <class BASE>class EMSA2HashIdLookup : public BASE{public:	struct HashIdentifierLookup	{		template <class H> struct HashIdentifierLookup2		{			static HashIdentifier Lookup()			{				return HashIdentifier(&EMSA2HashId<H>::id, 1);			}		};	};};// EMSA2HashId can be instantiated with the following classes.class SHA1;class RIPEMD160;class RIPEMD128;class SHA256;class SHA384;class SHA512;class Whirlpool;class SHA224;// end of list#ifdef CRYPTOPP_IS_DLLCRYPTOPP_DLL_TEMPLATE_CLASS EMSA2HashId<SHA1>;CRYPTOPP_DLL_TEMPLATE_CLASS EMSA2HashId<SHA224>;CRYPTOPP_DLL_TEMPLATE_CLASS EMSA2HashId<SHA256>;CRYPTOPP_DLL_TEMPLATE_CLASS EMSA2HashId<SHA384>;CRYPTOPP_DLL_TEMPLATE_CLASS EMSA2HashId<SHA512>;#endif//! _class CRYPTOPP_DLL EMSA2Pad : public EMSA2HashIdLookup<PK_DeterministicSignatureMessageEncodingMethod>{public:	static const char * CRYPTOPP_API StaticAlgorithmName() {return "EMSA2";}		size_t MinRepresentativeBitLength(size_t hashIdentifierLength, size_t digestLength) const		{return 8*digestLength + 31;}	void ComputeMessageRepresentative(RandomNumberGenerator &rng, 		const byte *recoverableMessage, size_t recoverableMessageLength,		HashTransformation &hash, HashIdentifier hashIdentifier, bool messageEmpty,		byte *representative, size_t representativeBitLength) const;};//! EMSA2, for use with RWSS and RSA_ISO/*! Only the following hash functions are supported by this signature standard:	\dontinclude emsa2.h	\skip EMSA2HashId can be instantiated	\until end of list*/struct P1363_EMSA2 : public SignatureStandard{	typedef EMSA2Pad SignatureMessageEncodingMethod;};NAMESPACE_END#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -