Crypto++  8.8
Free C++ class library of cryptographic schemes
Public Member Functions | List of all members
HashTransformation Class Referenceabstract

Interface for hash functions and data processing part of MACs. More...

+ Inheritance diagram for HashTransformation:

Public Member Functions

HashTransformationRef ()
 Provides a reference to this object. More...
 
virtual void Update (const byte *input, size_t length)=0
 Updates a hash with additional input. More...
 
virtual byteCreateUpdateSpace (size_t &size)
 Request space which can be written into by the caller. More...
 
virtual void Final (byte *digest)
 Computes the hash of the current message. More...
 
virtual void Restart ()
 Restart the hash. More...
 
virtual unsigned int DigestSize () const =0
 Provides the digest size of the hash. More...
 
unsigned int TagSize () const
 Provides the tag size of the hash. More...
 
virtual unsigned int BlockSize () const
 Provides the block size of the compression function. More...
 
virtual unsigned int OptimalBlockSize () const
 Provides the input block size most efficient for this hash. More...
 
virtual unsigned int OptimalDataAlignment () const
 Provides input and output data alignment for optimal performance. More...
 
virtual void CalculateDigest (byte *digest, const byte *input, size_t length)
 Updates the hash with additional input and computes the hash of the current message. More...
 
virtual bool Verify (const byte *digest)
 Verifies the hash of the current message. More...
 
virtual bool VerifyDigest (const byte *digest, const byte *input, size_t length)
 Updates the hash with additional input and verifies the hash of the current message. More...
 
virtual void TruncatedFinal (byte *digest, size_t digestSize)=0
 Computes the hash of the current message. More...
 
virtual void CalculateTruncatedDigest (byte *digest, size_t digestSize, const byte *input, size_t length)
 Updates the hash with additional input and computes the hash of the current message. More...
 
virtual bool TruncatedVerify (const byte *digest, size_t digestLength)
 Verifies the hash of the current message. More...
 
virtual bool VerifyTruncatedDigest (const byte *digest, size_t digestLength, const byte *input, size_t length)
 Updates the hash with additional input and verifies the hash of the current message. More...
 
- Public Member Functions inherited from Algorithm
 Algorithm (bool checkSelfTestStatus=true)
 Interface for all crypto algorithms. More...
 
virtual std::string AlgorithmName () const
 Provides the name of this algorithm. More...
 
virtual std::string AlgorithmProvider () const
 Retrieve the provider of this algorithm. More...
 
- Public Member Functions inherited from Clonable
virtual ClonableClone () const
 Copies this object. More...
 

Detailed Description

Interface for hash functions and data processing part of MACs.

HashTransformation objects are stateful. They are created in an initial state, change state as Update() is called, and return to the initial state when Final() is called. This interface allows a large message to be hashed in pieces by calling Update() on each piece followed by calling Final().

See also
HashFilter(), HashVerificationFilter()

Definition at line 1117 of file cryptlib.h.

Member Function Documentation

◆ Ref()

HashTransformation& HashTransformation::Ref ( )
inline

Provides a reference to this object.

Returns
A reference to this object

Useful for passing a temporary object to a function that takes a non-const reference

Definition at line 1125 of file cryptlib.h.

◆ Update()

virtual void HashTransformation::Update ( const byte input,
size_t  length 
)
pure virtual

◆ CreateUpdateSpace()

virtual byte* HashTransformation::CreateUpdateSpace ( size_t &  size)
inlinevirtual

Request space which can be written into by the caller.

Parameters
sizethe requested size of the buffer

The purpose of this method is to help avoid extra memory allocations.

size is an IN and OUT parameter and used as a hint. When the call is made, size is the requested size of the buffer. When the call returns, size is the size of the array returned to the caller.

The base class implementation sets size to 0 and returns NULL or nullptr.

Note
Some objects, like ArraySink, cannot create a space because its fixed.

Reimplemented in IteratedHashBase< T_HashWordType, HashTransformation >, and IteratedHashBase< word64, MessageAuthenticationCode >.

Definition at line 1140 of file cryptlib.h.

◆ Final()

virtual void HashTransformation::Final ( byte digest)
inlinevirtual

Computes the hash of the current message.

Parameters
digesta pointer to the buffer to receive the hash

Final() restarts the hash for a new message.

Precondition
COUNTOF(digest) <= DigestSize() or COUNTOF(digest) <= HASH::DIGESTSIZE ensures the output byte buffer is large enough for the digest.

Definition at line 1147 of file cryptlib.h.

◆ Restart()

virtual void HashTransformation::Restart ( )
inlinevirtual

◆ DigestSize()

virtual unsigned int HashTransformation::DigestSize ( ) const
pure virtual

◆ TagSize()

unsigned int HashTransformation::TagSize ( ) const
inline

Provides the tag size of the hash.

Returns
the tag size of the hash.

Same as DigestSize().

Definition at line 1162 of file cryptlib.h.

◆ BlockSize()

virtual unsigned int HashTransformation::BlockSize ( ) const
inlinevirtual

Provides the block size of the compression function.

Returns
block size of the compression function, in bytes

BlockSize() will return 0 if the hash is not block based or does not have an equivalent block size. For example, Keccak and SHA-3 do not have a block size, but they do have an equivalent block size called rate expressed as r.

Reimplemented in VMAC_Base, SHAKE_Final< T_Strength >, SHAKE_Final< 128 >, SHAKE_Final< 256 >, SHA3_Final< T_DigestSize >, SHA3_Final< 64 >, SHA3_Final< 32 >, SHA3_Final< 48 >, SHA3_Final< 28 >, Poly1305TLS_Base, Poly1305_Base< T >, Weak::MD2, LSH512_Base, LSH256_Base, Keccak_Final< T_DigestSize >, Keccak_Final< 64 >, Keccak_Final< 32 >, Keccak_Final< 48 >, Keccak_Final< 28 >, IteratedHash< T_HashWordType, T_Endianness, T_BlockSize, T_Base >, BLAKE2b, and BLAKE2s.

Definition at line 1170 of file cryptlib.h.

◆ OptimalBlockSize()

virtual unsigned int HashTransformation::OptimalBlockSize ( ) const
inlinevirtual

Provides the input block size most efficient for this hash.

Returns
The input block size that is most efficient for the cipher

The base class implementation returns MandatoryBlockSize().

Optimal input length is n * OptimalBlockSize() - GetOptimalBlockSizeUsed() for any n > 0.

Reimplemented in SipHash_Base< C, D, T_128bit >, SipHash_Base< 2, 4, false >, IteratedHashBase< T_HashWordType, HashTransformation >, IteratedHashBase< word64, MessageAuthenticationCode >, HMAC_Base, and CMAC_Base.

Definition at line 1177 of file cryptlib.h.

◆ OptimalDataAlignment()

virtual unsigned int HashTransformation::OptimalDataAlignment ( ) const
virtual

Provides input and output data alignment for optimal performance.

Returns
the input data alignment that provides optimal performance
See also
GetAlignment() and OptimalBlockSize()

Reimplemented in VMAC_Base, SipHash_Base< C, D, T_128bit >, SipHash_Base< 2, 4, false >, SHAKE, SHA3, LSH512_Base, LSH256_Base, Keccak, IteratedHashBase< T_HashWordType, HashTransformation >, IteratedHashBase< word64, MessageAuthenticationCode >, GCM_Base, EAX_Base, CMAC_Base, XChaCha20Poly1305_Base, ChaCha20Poly1305_Base, CCM_Base, BLAKE2b, and BLAKE2s.

◆ CalculateDigest()

virtual void HashTransformation::CalculateDigest ( byte digest,
const byte input,
size_t  length 
)
inlinevirtual

Updates the hash with additional input and computes the hash of the current message.

Parameters
digesta pointer to the buffer to receive the hash
inputthe additional input as a buffer
lengththe size of the buffer, in bytes

Use this if your input is in one piece and you don't want to call Update() and Final() separately

CalculateDigest() restarts the hash for the next message.

Precondition
COUNTOF(digest) == DigestSize() or COUNTOF(digest) == HASH::DIGESTSIZE ensures the output byte buffer is a valid size.

Definition at line 1193 of file cryptlib.h.

◆ Verify()

virtual bool HashTransformation::Verify ( const byte digest)
inlinevirtual

Verifies the hash of the current message.

Parameters
digesta pointer to the buffer of an existing hash
Returns
true if the existing hash matches the computed hash, false otherwise
Exceptions
InvalidArgument()if the existing hash's size exceeds DigestSize()

Verify() performs a bitwise compare on the buffers using VerifyBufsEqual(), which is a constant time comparison function. digestLength cannot exceed DigestSize().

Verify() restarts the hash for the next message.

Precondition
COUNTOF(digest) == DigestSize() or COUNTOF(digest) == HASH::DIGESTSIZE ensures the input byte buffer is a valid size.

Definition at line 1205 of file cryptlib.h.

◆ VerifyDigest()

virtual bool HashTransformation::VerifyDigest ( const byte digest,
const byte input,
size_t  length 
)
inlinevirtual

Updates the hash with additional input and verifies the hash of the current message.

Parameters
digesta pointer to the buffer of an existing hash
inputthe additional input as a buffer
lengththe size of the buffer, in bytes
Returns
true if the existing hash matches the computed hash, false otherwise
Exceptions
InvalidArgument()if the existing hash's size exceeds DigestSize()

Use this if your input is in one piece and you don't want to call Update() and Verify() separately

VerifyDigest() performs a bitwise compare on the buffers using VerifyBufsEqual(), which is a constant time comparison function.

VerifyDigest() restarts the hash for the next message.

Precondition
COUNTOF(digest) == DigestSize() or COUNTOF(digest) == HASH::DIGESTSIZE ensures the output byte buffer is a valid size.

Definition at line 1221 of file cryptlib.h.

◆ TruncatedFinal()

virtual void HashTransformation::TruncatedFinal ( byte digest,
size_t  digestSize 
)
pure virtual

Computes the hash of the current message.

Parameters
digesta pointer to the buffer to receive the hash
digestSizethe size of the truncated digest, in bytes

TruncatedFinal() calls Final() and then copies digestSize bytes to digest. The hash is restarted the hash for the next message.

Precondition
COUNTOF(digest) <= DigestSize() or COUNTOF(digest) <= HASH::DIGESTSIZE ensures the output byte buffer is a valid size.

Implemented in VMAC_Base, Poly1305TLS_Base, Poly1305_Base< T >, HMAC_Base, DMAC_Base< T >, CMAC_Base, CBC_MAC_Base, AuthenticatedSymmetricCipherBase, SHAKE, SHA3, Weak::PanamaHash< B >, Weak::MD2, LSH512_Base, LSH256_Base, Keccak, CRC32C, CRC32, BLAKE2b, BLAKE2s, Adler32, TruncatedHashTemplate< T >, NullHash, SipHash_Base< C, D, T_128bit >, SipHash_Base< 2, 4, false >, IteratedHashBase< T_HashWordType, HashTransformation >, IteratedHashBase< word64, MessageAuthenticationCode >, and PK_MessageAccumulator.

◆ CalculateTruncatedDigest()

virtual void HashTransformation::CalculateTruncatedDigest ( byte digest,
size_t  digestSize,
const byte input,
size_t  length 
)
inlinevirtual

Updates the hash with additional input and computes the hash of the current message.

Parameters
digesta pointer to the buffer to receive the hash
digestSizethe length of the truncated hash, in bytes
inputthe additional input as a buffer
lengththe size of the buffer, in bytes

Use this if your input is in one piece and you don't want to call Update() and CalculateDigest() separately.

CalculateTruncatedDigest() restarts the hash for the next message.

Precondition
digestSize <= DigestSize() or digestSize <= HASH::DIGESTSIZE ensures the output byte buffer is a valid size.

Definition at line 1243 of file cryptlib.h.

◆ TruncatedVerify()

virtual bool HashTransformation::TruncatedVerify ( const byte digest,
size_t  digestLength 
)
virtual

Verifies the hash of the current message.

Parameters
digesta pointer to the buffer of an existing hash
digestLengththe size of the truncated hash, in bytes
Returns
true if the existing hash matches the computed hash, false otherwise
Exceptions
InvalidArgument()if digestLength exceeds DigestSize()

TruncatedVerify() is a truncated version of Verify(). It can operate on a buffer smaller than DigestSize(). However, digestLength cannot exceed DigestSize().

Verify() performs a bitwise compare on the buffers using VerifyBufsEqual(), which is a constant time comparison function. digestLength cannot exceed DigestSize().

TruncatedVerify() restarts the hash for the next message.

Precondition
digestLength <= DigestSize() or digestLength <= HASH::DIGESTSIZE ensures the input byte buffer is a valid size.

Reimplemented in TruncatedHashTemplate< T >, and NullHash.

◆ VerifyTruncatedDigest()

virtual bool HashTransformation::VerifyTruncatedDigest ( const byte digest,
size_t  digestLength,
const byte input,
size_t  length 
)
inlinevirtual

Updates the hash with additional input and verifies the hash of the current message.

Parameters
digesta pointer to the buffer of an existing hash
digestLengththe size of the truncated hash, in bytes
inputthe additional input as a buffer
lengththe size of the buffer, in bytes
Returns
true if the existing hash matches the computed hash, false otherwise
Exceptions
InvalidArgument()if digestLength exceeds DigestSize()

Use this if your input is in one piece and you don't want to call Update() and TruncatedVerify() separately.

VerifyTruncatedDigest() is a truncated version of VerifyDigest(). It can operate on a buffer smaller than DigestSize(). However, digestLength cannot exceed DigestSize().

VerifyTruncatedDigest() restarts the hash for the next message.

Precondition
digestLength <= DigestSize() or digestLength <= HASH::DIGESTSIZE ensures the input byte buffer is a valid size.

Definition at line 1274 of file cryptlib.h.


The documentation for this class was generated from the following file: