|
| CRYPTOPP_CONSTANT (DIGESTSIZE=20) |
|
unsigned int | DigestSize () const |
|
void | UncheckedSetKey (const byte *userKey, unsigned int keylength, const NameValuePairs ¶ms) |
|
void | TruncatedFinal (byte *mac, size_t size) |
|
| CRYPTOPP_CONSTANT (KEYLENGTH=N) |
| The default key length used by the algorithm provided as a constant.
|
|
| CRYPTOPP_CONSTANT (MIN_KEYLENGTH=N) |
| The minimum key length used by the algorithm provided as a constant.
|
|
| CRYPTOPP_CONSTANT (MAX_KEYLENGTH=N) |
| The maximum key length used by the algorithm provided as a constant.
|
|
| CRYPTOPP_CONSTANT (DEFAULT_KEYLENGTH=N) |
| The default key length used by the algorithm provided as a constant.
|
|
| CRYPTOPP_CONSTANT (IV_REQUIREMENT=SimpleKeyingInterface::NOT_RESYNCHRONIZABLE) |
| The default IV requirements for the algorithm provided as a constant.
|
|
| CRYPTOPP_CONSTANT (IV_LENGTH=0) |
| The default IV length used by the algorithm provided as a constant.
|
|
CRYPTOPP_STATIC_CONSTEXPR size_t CRYPTOPP_API | StaticGetValidKeyLength (size_t keylength) |
| The default key length for the algorithm provided by a static function.
|
|
| CRYPTOPP_CONSTANT (BLOCKSIZE=T_BlockSize) |
|
| CRYPTOPP_COMPILE_ASSERT ((T_BlockSize &(T_BlockSize - 1))==0) |
|
unsigned int | BlockSize () const |
| Provides the block size of the hash.
|
|
ByteOrder | GetByteOrder () const |
| Provides the byte order of the hash.
|
|
void | CorrectEndianess (HashWordType *out, const HashWordType *in, size_t byteCount) |
| Adjusts the byte ordering of the hash.
|
|
| IteratedHashBase () |
| Construct an IteratedHashBase.
|
|
unsigned int | OptimalBlockSize () const |
| Provides the input block size most efficient for this cipher.
|
|
unsigned int | OptimalDataAlignment () const |
| Provides input and output data alignment for optimal performance.
|
|
void | Update (const byte *input, size_t length) |
| Updates a hash with additional input.
|
|
byte * | CreateUpdateSpace (size_t &size) |
| Requests space which can be written into by the caller.
|
|
void | Restart () |
| Restart the hash.
|
|
void | TruncatedFinal (byte *digest, size_t digestSize) |
| Computes the hash of the current message.
|
|
virtual std::string | AlgorithmProvider () const |
| Retrieve the provider of this algorithm.
|
|