wnr-example.conf 676 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Example netRandom client library configuration file
  2. #
  3. # This uses /dev/urandom for the seed, but could also
  4. # be set up to use a network entropy source
  5. version = "1.0";
  6. WnrClient:
  7. {
  8. dir:
  9. {
  10. working = "/var/run/wnrentropy";
  11. socket = "/var/run/wnrentropy";
  12. };
  13. drbg:
  14. {
  15. type = "SHA256";
  16. security_strength = 256;
  17. reseed_interval = 1;
  18. };
  19. source:
  20. {
  21. seed = {
  22. type = "FILEPATH";
  23. path = "/dev/urandom";
  24. };
  25. stream = {
  26. type = "FILEPATH";
  27. path = "/dev/urandom";
  28. };
  29. };
  30. buffer:
  31. {
  32. size = 8192;
  33. threshold = 7168;
  34. };
  35. };