Home
last modified time | relevance | path

Searched refs:required_hash_length (Results 1 – 1 of 1) sorted by relevance

/mbedtls-3.5.0/library/
Dpsa_crypto.c3561 size_t required_hash_length; local
3599 required_hash_length = (hash_length < operation->coordinate_bytes ?
3602 if (required_hash_length > sizeof(operation->hash)) {
3607 memcpy(operation->hash, hash, required_hash_length);
3608 operation->hash_length = required_hash_length;
3620 (void) required_hash_length;
3777 size_t required_hash_length = 0; local
3841 required_hash_length = (hash_length < coordinate_bytes ? hash_length :
3844 if (required_hash_length > sizeof(operation->hash)) {
3849 memcpy(operation->hash, hash, required_hash_length);
[all …]