Home
last modified time | relevance | path

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

/systemd-251/src/basic/
Dhmac.c33 sha256_process_bytes(key, key_size, &hash); in hmac_sha256()
53 sha256_process_bytes(inner_padding, HMAC_BLOCK_SIZE, &hash); in hmac_sha256()
54 sha256_process_bytes(input, input_size, &hash); in hmac_sha256()
59 sha256_process_bytes(outer_padding, HMAC_BLOCK_SIZE, &hash); in hmac_sha256()
60 sha256_process_bytes(res, SHA256_DIGEST_SIZE, &hash); in hmac_sha256()
/systemd-251/src/boot/efi/
Drandom-seed.c70 sha256_process_bytes(old_seed, size, &hash); in hash_once()
72 sha256_process_bytes(rng, size, &hash); in hash_once()
74 sha256_process_bytes(system_token, system_token_size, &hash); in hash_once()
75 sha256_process_bytes(&counter, sizeof(counter), &hash); in hash_once()
217sha256_process_bytes(array[i].string, strlena((const CHAR8*) array[i].string), &hash); in validate_sha256()
/systemd-251/src/random-seed/
Drandom-seed.c221sha256_process_bytes(&k, sizeof(k), &hash_state); /* Hash length to distinguish from new seed. */ in run()
222 sha256_process_bytes(buf, k, &hash_state); in run()
297sha256_process_bytes(&k, sizeof(k), &hash_state); /* Hash length to distinguish from old seed. */ in run()
298 sha256_process_bytes(buf, k, &hash_state); in run()
/systemd-251/src/fundamental/
Dsha256.h34 void sha256_process_bytes(const void *buffer, size_t len, struct sha256_ctx *ctx);
Dsha256.c130 void sha256_process_bytes(const void *buffer, size_t len, struct sha256_ctx *ctx) { in sha256_process_bytes() function
/systemd-251/src/shared/
Dtpm2-util.c815 sha256_process_bytes(pin, len, &hash); in hash_pin()