ref: 2b38105bb4f24e9990844be297b990307dc98a01
dir: /libsec/port/prng.c/
#include "os.h" #include <mp.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(); }