Searched defs:hd (Results 1 - 1 of 1) sorted by relevance
/systemd/src/journal/ |
H A D | fsprg.c | 95 gcry_md_hd_t hd, hd2; local 100 gcry_md_open(&hd, RND_HASH, 0); 101 gcry_md_write(hd, seed, seedlen); 102 gcry_md_putc(hd, (idx >> 24) & 0xff); 103 gcry_md_putc(hd, (idx >> 16) & 0xff); 104 gcry_md_putc(hd, (idx >> 8) & 0xff); 105 gcry_md_putc(hd, (idx >> 0) & 0xff); 108 gcry_md_copy(&hd2, hd); 120 gcry_md_close(hd);
|
Completed in 21 milliseconds