
| Current Path : /include/dovecot/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //include/dovecot/randgen.h |
#ifndef RANDGEN_H #define RANDGEN_H /* Fill given buffer with semi-strong randomness */ void random_fill(void *buf, size_t size); /* may be called multiple times, and are called by default in lib_init */ void random_init(void); void random_deinit(void); #ifdef DEBUG /* Debug helper to make random tests reproduceable. 0=got seed, -1=failure. */ int rand_get_last_seed(unsigned int *seed_r); #endif #endif