You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dht: allow to configure the PRNG used instead of always seeding it from random_device. This allows for better reproducibility of the DHT behaviour for testing.
rng: added getDerivedRandomEngine to seed a new PRNG from an existing one.
rng: improve getSeededRandomEngine.
rng: drop custom random_device implementation for MinGW/Windows, because MinGW now has working std::random_device support on Windows. dht::crypto::random_device is no longer defined. Use std::random_device.