diff options
author | lloyd <[email protected]> | 2008-11-21 18:21:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-21 18:21:56 +0000 |
commit | 40c642fc6bc7b3feab657000d2df05db96480d13 (patch) | |
tree | e4ab954e165435ea7cd91f0a32699903aee69474 /doc/examples/hash_quickly.cpp | |
parent | e5f7085f03c816e7e44530997cd507705de34955 (diff) |
Update examples for changed 1.8 APIs, including:
EAX mode taking a BlockCipher* instead of a name.
PK_Signer taking an EMSA* instead of a name.
generate_dsa_primes using an Algorithm_Factory
Changes to how new algorithms are added (look_add.h is gone entirely,
replaced by Algorithm_Factory calls) in xor_ciph. Also update for new
stream cipher key schedule function name and new directory for base
class decl.
Diffstat (limited to 'doc/examples/hash_quickly.cpp')
-rw-r--r-- | doc/examples/hash_quickly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/hash_quickly.cpp b/doc/examples/hash_quickly.cpp index d8d991d9e..e719a7178 100644 --- a/doc/examples/hash_quickly.cpp +++ b/doc/examples/hash_quickly.cpp @@ -63,7 +63,7 @@ int main(int argc, char* argv[]) const std::string hash = "SHA-1"; - //set_fastest_implementation(hash, rng); + set_fastest_implementation(hash, rng); // Here we intentionally use the 'old style' lookup interface // which will also respect the provider settings. Or can use: |