Searched refs:hashedlen (Results 1 – 3 of 3) sorted by relevance
238 digest_length(digest_t *hash, unsigned hashedlen) in digest_length() argument247 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff); in digest_length()248 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff); in digest_length()249 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff); in digest_length()250 trailer[5] = (uint8_t)(hashedlen & 0xff); in digest_length()
345 digest_length(digest_t *hash, unsigned hashedlen) in digest_length() argument354 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff); in digest_length()355 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff); in digest_length()356 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff); in digest_length()357 trailer[5] = (uint8_t)(hashedlen & 0xff); in digest_length()
184 unsigned hashedlen; in check_binary_sig() local214 hashedlen = (unsigned)sig->info.v4_hashlen; in check_binary_sig()215 trailer[2] = (uint8_t)(hashedlen >> 24); in check_binary_sig()216 trailer[3] = (uint8_t)(hashedlen >> 16); in check_binary_sig()217 trailer[4] = (uint8_t)(hashedlen >> 8); in check_binary_sig()218 trailer[5] = (uint8_t)(hashedlen); in check_binary_sig()