Searched refs:hashedlen (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Ddigest.c238 digest_length(digest_t *hash, unsigned hashedlen) argument
247 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff);
248 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff);
249 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff);
250 trailer[5] = (uint8_t)(hashedlen & 0xff);
/netbsd-current/crypto/external/bsd/netpgp/dist/src/libdigest/
H A Ddigest.c345 digest_length(digest_t *hash, unsigned hashedlen) argument
354 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff);
355 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff);
356 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff);
357 trailer[5] = (uint8_t)(hashedlen & 0xff);
/netbsd-current/crypto/external/bsd/netpgp/dist/src/lib/
H A Dvalidate.c184 unsigned hashedlen; local
214 hashedlen = (unsigned)sig->info.v4_hashlen;
215 trailer[2] = (uint8_t)(hashedlen >> 24);
216 trailer[3] = (uint8_t)(hashedlen >> 16);
217 trailer[4] = (uint8_t)(hashedlen >> 8);
218 trailer[5] = (uint8_t)(hashedlen);

Completed in 177 milliseconds