Imt.Base C++ API V4.1.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Sha256Hash.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_CRYPTO_SHA256HASH_H
4#define IMT_BASE_LIB_CRYPTO_SHA256HASH_H
5
8
9// AXIVION FILE Style AutosarC++19_03-A18.1.1: use C-style array for compatibility
10
11namespace imt {
12namespace base {
13namespace lib {
14namespace crypto {
15
19// AXIVION Next Construct AutosarC++19_03-A0.1.6: Type may not be used in the projects
21
22public:
23
27 static constexpr uint32_t DIGIST_SIZE {32U};
28
33
38
42 void start();
43
49 // AXIVION Next Line AutosarC++19_03-A8.4.7: pointer parameter is to pass an array and can not be passed by value
50 void update(uint8_t const* pBuffer, uint32_t bufferSize);
51
56 void finish(uint8_t digest[DIGIST_SIZE]);
57
58 Sha256Hash(Sha256Hash const& other) noexcept = delete;
59 Sha256Hash(Sha256Hash&& other) noexcept = delete;
60 Sha256Hash& operator=(Sha256Hash const& other) & noexcept = delete;
61 Sha256Hash& operator=(Sha256Hash&& other) & noexcept = delete;
62
63private:
64
65 void* m_pContext;
66};
67
68} // namespace crypto
69} // namespace lib
70} // namespace base
71} // namespace imt
72
73#endif // IMT_BASE_LIB_CRYPTO_SHA256HASH_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Provides the functions required to calculate a SHA-256 hash.
Definition Sha256Hash.h:20
void update(uint8_t const *pBuffer, uint32_t bufferSize)
Updates the internal digest with the given buffer.
Sha256Hash & operator=(Sha256Hash const &other) &noexcept=delete
static constexpr uint32_t DIGIST_SIZE
Defines the size of the SHA256 digest.
Definition Sha256Hash.h:27
void finish(uint8_t digest[DIGIST_SIZE])
Finishes the calculation of a new digest.
Sha256Hash & operator=(Sha256Hash &&other) &noexcept=delete
Sha256Hash(Sha256Hash &&other) noexcept=delete
void start()
Starts the calculation of a new digest.
Sha256Hash(Sha256Hash const &other) noexcept=delete
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62