diff options
author | lloyd <[email protected]> | 2012-05-31 21:34:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-05-31 21:34:07 +0000 |
commit | 63defdde855dca51d5db405cb97d9b7c9ba09332 (patch) | |
tree | 3305d2e65440007ab9f1b4fd2cc1f57aba61ee44 /doc/examples/dsa_kgen.cpp | |
parent | 149a855bd7b090eb3868efff272e455e568eade4 (diff) |
Various examples fixes, most notable updating cert_verify to the new API
Diffstat (limited to 'doc/examples/dsa_kgen.cpp')
-rw-r--r-- | doc/examples/dsa_kgen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/dsa_kgen.cpp b/doc/examples/dsa_kgen.cpp index fc5b7b501..f68b20834 100644 --- a/doc/examples/dsa_kgen.cpp +++ b/doc/examples/dsa_kgen.cpp @@ -30,7 +30,8 @@ int main(int argc, char* argv[]) AutoSeeded_RNG rng; - DL_Group group(rng, DL_Group::DSA_Kosherizer, 2048, 256); + //DL_Group group(rng, DL_Group::DSA_Kosherizer, 2048, 256); + DL_Group group("dsa/jce/1024"); DSA_PrivateKey key(rng, group); |