Files
rippled/src/ripple
Nik Bougalis 40363f96a9 Generic PRNG framework:
* A new, unified interface for generating random numbers and
  filling buffers supporting any engine that fits the
  UniformRandomNumberGenerator concept;
* Automatically seeded replacement for rand using the fast
  xorshift+ PRNG engine;
* A CSPRNG engine that can be used with the new framework
  when needing to to generate cryptographically secure
  randomness.
* Unit test cleanups to work with new engine.
2016-01-12 18:45:35 -08:00
..
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2015-12-29 12:38:21 -05:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2015-09-28 17:24:05 -07:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2016-01-12 18:45:35 -08:00
2015-10-20 11:35:24 -04:00
2013-11-15 11:29:45 -08:00

Newest Style

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem