prg.h 590 B

1234567891011121314151617181920
  1. /* Copyright (C) 2019 Anonymous
  2. *
  3. * This is a pre-release version of the DPF++ library distributed anonymously
  4. * for peer review. A public release of the software will be published under the
  5. * LPGL v2.1 license in the near future. Please do not redistribute this version
  6. * of the software.
  7. */
  8. #ifndef DPFPP_PRG_H__
  9. #define DPFPP_PRG_H__
  10. namespace dpf
  11. {
  12. template<typename node_t, typename lowmc>
  13. inline void PRG(const lowmc & prgkey, const node_t & seed, void * outbuf, const uint32_t len, const uint32_t from = 0);
  14. } // namespace dpf
  15. #endif // DPFPP_PRG_H