Searched defs:epoch (Results 1 - 3 of 3) sorted by relevance

/systemd/src/journal/
H A Djournal-authenticate.c61 o->tag.epoch = htole64(FSPRG_GetEpoch(f->fsprg_state));
63 log_debug("Writing tag %"PRIu64" for epoch %"PRIu64"",
100 static int journal_file_get_epoch(JournalFile *f, uint64_t realtime, uint64_t *epoch) { argument
104 assert(epoch);
117 *epoch = t;
122 uint64_t goal, epoch; local
133 epoch = FSPRG_GetEpoch(f->fsprg_state);
134 if (epoch > goal)
137 return epoch != goal;
141 uint64_t goal, epoch; local
170 uint64_t epoch; local
549 uint64_t epoch; local
[all...]
H A Dfsprg.c237 return 2 + 2 * _secpar / 8 + 8; /* to store header,n,x,epoch */
315 uint64_t epoch; local
322 epoch = uint64_import(state + 2 + 2 * secpar / 8, 8);
325 epoch++;
328 uint64_export(state + 2 + 2 * secpar / 8, 8, epoch);
340 void FSPRG_Seek(void *state, uint64_t epoch, const void *msk, const void *seed, size_t seedlen) { argument
356 kp = twopowmodphi(epoch, p); /* compute 2^epoch (mod phi(p)) */
357 kq = twopowmodphi(epoch, q); /* compute 2^epoch (mo
[all...]
H A Djournal-def.h136 le64_t epoch; member in struct:TagObject

Completed in 255 milliseconds