diff options
author | lloyd <[email protected]> | 2010-03-01 23:05:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-01 23:05:00 +0000 |
commit | 3fb831f2e24ec1e3d7f8902d4aa5adceaf366f01 (patch) | |
tree | 226c329e44047b418add41e3ddfc58c322229409 /checks/x509.cpp | |
parent | b789c87b7c96dbdb00839996c9603a3f0921b25b (diff) |
Kill get_EC_Dom_Pars_by_oid
Diffstat (limited to 'checks/x509.cpp')
-rw-r--r-- | checks/x509.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/x509.cpp b/checks/x509.cpp index 8b7ce7d47..0891d8b35 100644 --- a/checks/x509.cpp +++ b/checks/x509.cpp @@ -161,7 +161,7 @@ void do_x509_tests(RandomNumberGenerator& rng) /* Create user #2's key and cert request */ std::cout << '.' << std::flush; #if defined(BOTAN_HAS_ECDSA) - EC_Domain_Params ecc_domain = get_EC_Dom_Pars_by_oid("1.2.840.10045.3.1.7"); + EC_Domain_Params ecc_domain(OID("1.2.840.10045.3.1.7")); ECDSA_PrivateKey user2_key(rng, ecc_domain); #else RSA_PrivateKey user2_key(rng, 1024); |