prg.h 283 B

12345678910111213
  1. #ifndef DPFPP_PRG_H__
  2. #define DPFPP_PRG_H__
  3. namespace dpf
  4. {
  5. template<typename node_t, typename lowmc>
  6. inline void PRG(const lowmc & prgkey, const node_t & seed, void * outbuf, const uint32_t len, const uint32_t from = 0);
  7. } // namespace dpf
  8. #endif // DPFPP_PRG_H