MCUX CLNS
MCUX Crypto Library Normal Secure
Loading...
Searching...
No Matches
mcuxClHashModes_Constants.h
Go to the documentation of this file.
1/*--------------------------------------------------------------------------*/
2/* Copyright 2020-2025 NXP */
3/* */
4/* NXP Confidential and Proprietary. This software is owned or controlled */
5/* by NXP and may only be used strictly in accordance with the applicable */
6/* license terms. By expressly accepting such terms or by downloading, */
7/* installing, activating and/or otherwise using the software, you are */
8/* agreeing that you have read, and that you agree to comply with and are */
9/* bound by, such license terms. If you do not agree to be bound by the */
10/* applicable license terms, then you may not retain, install, activate or */
11/* otherwise use the software. */
12/*--------------------------------------------------------------------------*/
13
16
17#ifndef MCUXCLHASHMODES_CONSTANTS_H_
18#define MCUXCLHASHMODES_CONSTANTS_H_
19
20#include <mcuxClConfig.h> // Exported features flags header
21
28
35
36#define MCUXCLHASH_OUTPUT_SIZE_SHA_1 (20U)
37#define MCUXCLHASH_OUTPUT_SIZE_SHA_224 (28U)
38#define MCUXCLHASH_OUTPUT_SIZE_SHA_256 (32U)
39#define MCUXCLHASH_OUTPUT_SIZE_SHA_384 (48U)
40#define MCUXCLHASH_OUTPUT_SIZE_SHA_512 (64U)
41#define MCUXCLHASH_OUTPUT_SIZE_SHA_512_224 (28U)
42#define MCUXCLHASH_OUTPUT_SIZE_SHA_512_256 (32U)
43#define MCUXCLHASH_OUTPUT_SIZE_SHA3_224 (28U)
44#define MCUXCLHASH_OUTPUT_SIZE_SHA3_256 (32U)
45#define MCUXCLHASH_OUTPUT_SIZE_SHA3_384 (48U)
46#define MCUXCLHASH_OUTPUT_SIZE_SHA3_512 (64U)
47#define MCUXCLHASH_OUTPUT_SIZE_SHA3_SHAKE_128 (168uL)
48#define MCUXCLHASH_OUTPUT_SIZE_SHA3_SHAKE_256 (136uL)
49#define MCUXCLHASH_OUTPUT_SIZE_SHA3_CSHAKE_128 (168uL)
50#define MCUXCLHASH_OUTPUT_SIZE_SHA3_CSHAKE_256 (136uL)
51#define MCUXCLHASH_MAX_OUTPUT_SIZE (MCUXCLHASH_OUTPUT_SIZE_SHA3_SHAKE_128)
53
54
56
57#endif /* MCUXCLHASHMODES_CONSTANTS_H_ */