Home
last modified time | relevance | path

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

/freebsd-14.2/crypto/openssl/providers/implementations/rands/
H A Ddrbg_hash.c80 size_t num_bits_returned = outlen * 8; in hash_df() local
89 tmp[tmp_sz++] = (unsigned char)((num_bits_returned >> 24) & 0xff); in hash_df()
90 tmp[tmp_sz++] = (unsigned char)((num_bits_returned >> 16) & 0xff); in hash_df()
91 tmp[tmp_sz++] = (unsigned char)((num_bits_returned >> 8) & 0xff); in hash_df()
92 tmp[tmp_sz++] = (unsigned char)(num_bits_returned & 0xff); in hash_df()