SHA-224 hash function, headers.
More...
Go to the source code of this file.
|
void | sha224Process (sha224Param *sp) |
| This function performs the core of the SHA-224 hash algorithm; it processes a block of 64 bytes.
|
|
int | sha224Reset (sha224Param *sp) |
| This function resets the parameter block so that it's ready for a new hash.
|
|
int | sha224Update (sha224Param *sp, const byte *data, size_t size) |
| This function should be used to pass successive blocks of data to be hashed.
|
|
int | sha224Digest (sha224Param *sp, byte *digest) |
| This function finishes the current hash computation and copies the digest value into digest.
|
|
◆ sha224Digest()
This function finishes the current hash computation and copies the digest value into digest.
- Parameters
-
sp | The hash function's parameter block. |
digest | The place to store the 32-byte digest. |
- Return values
-
◆ sha224Process()
This function performs the core of the SHA-224 hash algorithm; it processes a block of 64 bytes.
- Parameters
-
sp | The hash function's parameter block. |
References BEECRYPTAPI.
◆ sha224Reset()
This function resets the parameter block so that it's ready for a new hash.
- Parameters
-
sp | The hash function's parameter block. |
- Return values
-
References BEECRYPTAPI.
◆ sha224Update()
This function should be used to pass successive blocks of data to be hashed.
- Parameters
-
sp | The hash function's parameter block. |
data | |
size | |
- Return values
-
References BEECRYPTAPI.
◆ sha224
Holds the full API description of the SHA-224 algorithm.