diff options
author | lloyd <[email protected]> | 2008-10-26 03:07:18 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-26 03:07:18 +0000 |
commit | a8ee54d459a42d98fdfe1e9ff4f0c011c2f41e10 (patch) | |
tree | 576d871ed243508e5458456d12ea99d240e8339c /doc/examples/row_encryptor.cpp | |
parent | b1344477a80c7410da9ce05dd3343c04d24f8095 (diff) |
Move rng.{cpp,h} from core to rng/ topdir
Add a new class AutoSeeded_RNG that is a RandomNumberGenerator that wraps
up the logic formerly in RandomNumberGenerator::make_rng. make_rng in
fact now just returns a new AutoSeeded_RNG object.
AutoSeeded_RNG is a bit more convenient because
- No need to use auto_ptr
- No need to dereference (same syntax everywhere - it's an underestimated
advantage imo)
Also move the code from timer/timer_base to timer/
Diffstat (limited to 'doc/examples/row_encryptor.cpp')
-rw-r--r-- | doc/examples/row_encryptor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/examples/row_encryptor.cpp b/doc/examples/row_encryptor.cpp index dc15ee6c4..f78332335 100644 --- a/doc/examples/row_encryptor.cpp +++ b/doc/examples/row_encryptor.cpp @@ -88,9 +88,9 @@ int main() { LibraryInitializer init; - std::auto_ptr<RandomNumberGenerator> rng(RandomNumberGenerator::make_rng()); + AutoSeeded_RNG rng; - Row_Encryptor encryptor("secret passphrase", *rng); + Row_Encryptor encryptor("secret passphrase", rng); std::vector<std::string> original_inputs; @@ -104,7 +104,7 @@ int main() // TODO: Maybe randomize the length slightly? for(u32bit j = 0; j != 32; ++j) - out << std::hex << (int)rng->next_byte(); + out << std::hex << (int)rng.next_byte(); original_inputs.push_back(out.str()); } |