ref: 6213f356c0ce620aa6611ba81b60cffad3d4d6d2
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(); }