mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-29 00:18:06 -04:00
Use faster type for state index
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
1789d84282
commit
e627bef2f8
@ -70,7 +70,7 @@ mbedtls_sha3_family_functions;
|
|||||||
*/
|
*/
|
||||||
typedef struct mbedtls_sha3_context {
|
typedef struct mbedtls_sha3_context {
|
||||||
uint64_t state[25];
|
uint64_t state[25];
|
||||||
uint8_t index;
|
uint32_t index;
|
||||||
uint16_t olen;
|
uint16_t olen;
|
||||||
uint16_t max_block_size;
|
uint16_t max_block_size;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user