Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
imt::base::lib::crypto::Sha256Hash Class Referencefinal

Provides the functions required to calculate a SHA-256 hash. More...

#include <Imt.Base.Lib.Crypto/inc/Imt.Base.Lib.Crypto/Sha256Hash.h>

Inheritance diagram for imt::base::lib::crypto::Sha256Hash:
imt::base::core::platform::Nonmovable

Public Member Functions

 Sha256Hash ()
 Constructor.
 
 ~Sha256Hash ()
 Destructor.
 
void start ()
 Starts the calculation of a new digest.
 
void update (uint8_t const *pBuffer, uint32_t bufferSize)
 Updates the internal digest with the given buffer.
 
void finish (uint8_t digest[DIGIST_SIZE])
 Finishes the calculation of a new digest.
 
 Sha256Hash (Sha256Hash const &other) noexcept=delete
 
 Sha256Hash (Sha256Hash &&other) noexcept=delete
 
Sha256Hashoperator= (Sha256Hash const &other) &noexcept=delete
 
Sha256Hashoperator= (Sha256Hash &&other) &noexcept=delete
 

Static Public Attributes

static constexpr uint32_t DIGIST_SIZE {32U}
 Defines the size of the SHA256 digest.
 

Detailed Description

Provides the functions required to calculate a SHA-256 hash.

Definition at line 20 of file Sha256Hash.h.

Constructor & Destructor Documentation

◆ Sha256Hash() [1/3]

imt::base::lib::crypto::Sha256Hash::Sha256Hash ( )

Constructor.

◆ ~Sha256Hash()

imt::base::lib::crypto::Sha256Hash::~Sha256Hash ( )

Destructor.

◆ Sha256Hash() [2/3]

imt::base::lib::crypto::Sha256Hash::Sha256Hash ( Sha256Hash const &  other)
deletenoexcept

◆ Sha256Hash() [3/3]

imt::base::lib::crypto::Sha256Hash::Sha256Hash ( Sha256Hash &&  other)
deletenoexcept

Member Function Documentation

◆ finish()

void imt::base::lib::crypto::Sha256Hash::finish ( uint8_t  digest[DIGIST_SIZE])

Finishes the calculation of a new digest.

Parameters
digestThe calculated digest

◆ operator=() [1/2]

Sha256Hash & imt::base::lib::crypto::Sha256Hash::operator= ( Sha256Hash &&  other) &
deletenoexcept

◆ operator=() [2/2]

Sha256Hash & imt::base::lib::crypto::Sha256Hash::operator= ( Sha256Hash const &  other) &
deletenoexcept

◆ start()

void imt::base::lib::crypto::Sha256Hash::start ( )

Starts the calculation of a new digest.

◆ update()

void imt::base::lib::crypto::Sha256Hash::update ( uint8_t const *  pBuffer,
uint32_t  bufferSize 
)

Updates the internal digest with the given buffer.

Parameters
pBufferThe buffer to hash
bufferSizeThe size of the buffer

Member Data Documentation

◆ DIGIST_SIZE

constexpr uint32_t imt::base::lib::crypto::Sha256Hash::DIGIST_SIZE {32U}
staticconstexpr

Defines the size of the SHA256 digest.

Definition at line 27 of file Sha256Hash.h.


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