ref: b548687a8ed1d0a159c9d3f3f921d93bbb56908e dir: /libsec/port/prng.c/
#include "os.h" #include "libsec.h" // // just use the libc prng to fill a buffer // void prng(uchar *p, int n) { uchar *e; for(e = p+n; p < e; p++) *p = rand(); }