2002-10-04 17:31:41 +00:00
|
|
|
#ifndef CRYPTOPP_PKCSPAD_H
|
|
|
|
#define CRYPTOPP_PKCSPAD_H
|
|
|
|
|
|
|
|
#include "cryptlib.h"
|
|
|
|
#include "pubkey.h"
|
|
|
|
|
2003-07-04 00:17:37 +00:00
|
|
|
#ifdef CRYPTOPP_IS_DLL
|
|
|
|
#include "sha.h"
|
|
|
|
#endif
|
|
|
|
|
2002-10-04 17:31:41 +00:00
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
|
2003-03-20 01:24:12 +00:00
|
|
|
//! <a href="http://www.weidai.com/scan-mirror/ca.html#cem_PKCS1-1.5">EME-PKCS1-v1_5</a>
|
|
|
|
class PKCS_EncryptionPaddingScheme : public PK_EncryptionMessageEncodingMethod
|
2002-10-04 17:31:41 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static const char * StaticAlgorithmName() {return "EME-PKCS1-v1_5";}
|
|
|
|
|
|
|
|
unsigned int MaxUnpaddedLength(unsigned int paddedLength) const;
|
2003-07-16 01:53:45 +00:00
|
|
|
void Pad(RandomNumberGenerator &rng, const byte *raw, unsigned int inputLength, byte *padded, unsigned int paddedLength, const NameValuePairs ¶meters) const;
|
|
|
|
DecodingResult Unpad(const byte *padded, unsigned int paddedLength, byte *raw, const NameValuePairs ¶meters) const;
|
2002-10-04 17:31:41 +00:00
|
|
|
};
|
|
|
|
|
2003-07-04 00:17:37 +00:00
|
|
|
template <class H> class PKCS_DigestDecoration
|
2002-10-04 17:31:41 +00:00
|
|
|
{
|
2003-07-04 00:17:37 +00:00
|
|
|
public:
|
2003-03-20 01:24:12 +00:00
|
|
|
static const byte decoration[];
|
|
|
|
static const unsigned int length;
|
2002-10-04 17:31:41 +00:00
|
|
|
};
|
|
|
|
|
2004-07-22 00:51:57 +00:00
|
|
|
// PKCS_DigestDecoration can be instantiated with the following
|
|
|
|
// classes as specified in PKCS#1 v2.0 and P1363a
|
2005-01-20 04:19:35 +00:00
|
|
|
class SHA1;
|
2004-07-22 00:51:57 +00:00
|
|
|
class MD2;
|
|
|
|
class MD5;
|
|
|
|
class RIPEMD160;
|
|
|
|
class Tiger;
|
2005-01-20 04:19:35 +00:00
|
|
|
class SHA224;
|
2004-07-22 00:51:57 +00:00
|
|
|
class SHA256;
|
|
|
|
class SHA384;
|
|
|
|
class SHA512;
|
|
|
|
// end of list
|
|
|
|
|
2004-09-03 10:57:31 +00:00
|
|
|
#ifdef CRYPTOPP_IS_DLL
|
2005-01-20 04:19:35 +00:00
|
|
|
CRYPTOPP_DLL_TEMPLATE_CLASS PKCS_DigestDecoration<SHA1>;
|
|
|
|
CRYPTOPP_DLL_TEMPLATE_CLASS PKCS_DigestDecoration<SHA224>;
|
2004-09-03 10:57:31 +00:00
|
|
|
CRYPTOPP_DLL_TEMPLATE_CLASS PKCS_DigestDecoration<SHA256>;
|
|
|
|
CRYPTOPP_DLL_TEMPLATE_CLASS PKCS_DigestDecoration<SHA384>;
|
|
|
|
CRYPTOPP_DLL_TEMPLATE_CLASS PKCS_DigestDecoration<SHA512>;
|
|
|
|
#endif
|
|
|
|
|
2003-03-20 01:24:12 +00:00
|
|
|
//! <a href="http://www.weidai.com/scan-mirror/sig.html#sem_PKCS1-1.5">EMSA-PKCS1-v1_5</a>
|
2003-07-04 00:17:37 +00:00
|
|
|
class CRYPTOPP_DLL PKCS1v15_SignatureMessageEncodingMethod : public PK_DeterministicSignatureMessageEncodingMethod
|
2002-10-04 17:31:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2005-01-20 04:19:35 +00:00
|
|
|
static const char * CRYPTOPP_API StaticAlgorithmName() {return "EMSA-PKCS1-v1_5";}
|
|
|
|
|
|
|
|
unsigned int MinRepresentativeBitLength(unsigned int hashIdentifierSize, unsigned int digestSize) const
|
|
|
|
{return 8 * (digestSize + hashIdentifierSize + 10);}
|
2002-10-04 17:31:41 +00:00
|
|
|
|
2003-03-20 01:24:12 +00:00
|
|
|
void ComputeMessageRepresentative(RandomNumberGenerator &rng,
|
|
|
|
const byte *recoverableMessage, unsigned int recoverableMessageLength,
|
|
|
|
HashTransformation &hash, HashIdentifier hashIdentifier, bool messageEmpty,
|
|
|
|
byte *representative, unsigned int representativeBitLength) const;
|
|
|
|
|
|
|
|
struct HashIdentifierLookup
|
|
|
|
{
|
|
|
|
template <class H> struct HashIdentifierLookup2
|
|
|
|
{
|
|
|
|
static HashIdentifier Lookup()
|
|
|
|
{
|
|
|
|
return HashIdentifier(PKCS_DigestDecoration<H>::decoration, PKCS_DigestDecoration<H>::length);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
2002-10-04 17:31:41 +00:00
|
|
|
};
|
|
|
|
|
2004-07-22 00:51:57 +00:00
|
|
|
//! PKCS #1 version 1.5, for use with RSAES and RSASS
|
|
|
|
/*! Only the following hash functions are supported by this signature standard:
|
|
|
|
\dontinclude pkcspad.h
|
|
|
|
\skip can be instantiated
|
|
|
|
\until end of list
|
|
|
|
*/
|
2002-10-04 17:31:41 +00:00
|
|
|
struct PKCS1v15 : public SignatureStandard, public EncryptionStandard
|
|
|
|
{
|
2003-03-20 01:24:12 +00:00
|
|
|
typedef PKCS_EncryptionPaddingScheme EncryptionMessageEncodingMethod;
|
|
|
|
typedef PKCS1v15_SignatureMessageEncodingMethod SignatureMessageEncodingMethod;
|
2002-10-04 17:31:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|