6#ifndef CRYPTOPP_EMSA2_H
7#define CRYPTOPP_EMSA2_H
18NAMESPACE_BEGIN(CryptoPP)
40 static HashIdentifier Lookup()
74 CRYPTOPP_STATIC_CONSTEXPR
const char* CRYPTOPP_API StaticAlgorithmName() {
return "EMSA2";}
76 size_t MinRepresentativeBitLength(
size_t hashIdentifierLength,
size_t digestLength)
const
77 {CRYPTOPP_UNUSED(hashIdentifierLength);
return 8*digestLength + 31;}
80 const byte *recoverableMessage,
size_t recoverableMessageLength,
82 byte *representative,
size_t representativeBitLength)
const;
Interface for random number generators.
Abstract base classes that provide a uniform interface to this library.
Forward declarations for hash functions used in signature encoding methods.
Utility functions for the Crypto++ library.
This file contains helper classes/functions for implementing public key algorithms.
Classes for SHA-1 and SHA-2 family of message digests.
EMSA2/P1363 padding method.
Base class for public key signature standard classes.