Home | History | Annotate | Line # | Download | only in include
randombytes.h revision 1.1
      1  1.1  riastrad /* This overwrites dist/src/libsodium/include/sodium/randombytes.h */
      2  1.1  riastrad 
      3  1.1  riastrad static inline void
      4  1.1  riastrad randombytes_buf(void * const buf, const size_t size)
      5  1.1  riastrad {
      6  1.1  riastrad 
      7  1.1  riastrad 	extern size_t cprng_fast(void *, size_t);
      8  1.1  riastrad 	cprng_fast(buf, size);
      9  1.1  riastrad }
     10  1.1  riastrad 
     11  1.1  riastrad static inline void
     12  1.1  riastrad randombytes_stir(void)
     13  1.1  riastrad {
     14  1.1  riastrad }
     15