template<unsigned int ROUNDS>
class r123::ARS1xm128i_R< ROUNDS >
ARS1xm128i_R exports the member functions, typedefs and operator overloads required by a Counter Based RNGs (CBRNGs). class.
ARS1xm128i uses the crypotgraphic AES round function, but a non-cryptographc key schedule to save time and space.
ARS1xm128i is only available when the feature-test macro R123_USE_AES_NI is true, which should occur only when the compiler is configured to generate AES-NI instructions (or when defaults are overridden by compile-time, compiler-command-line options).
The template argument, ROUNDS, is the number of times the ARS round functions will be applied.
As of September 2011, the authors know of no statistical flaws with ROUNDS=5 or more.
ARS1xm128i is equivalent to ARS1xm128i_R<7>. With 7 rounds, the ARS1xm128i CBRNG has a considerable safety margin over the minimum number of rounds with no known statistical flaws, but still has excellent performance.