diff options
author | lloyd <[email protected]> | 2006-07-01 21:31:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-07-01 21:31:59 +0000 |
commit | 6601628f84f52535adec1f34fe46c5e7039770cc (patch) | |
tree | b7f9c4fc8575b4c6bd1a1786a4bd2d539c3c2555 /src/x509_ca.cpp | |
parent | 6d3a4de1efcb6b04a1ab87037d487f979d7ca445 (diff) |
Make choose_sig_format a static member of Config rather than
a standalone function.
Diffstat (limited to 'src/x509_ca.cpp')
-rw-r--r-- | src/x509_ca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x509_ca.cpp b/src/x509_ca.cpp index 23e79356f..fa4b7cf92 100644 --- a/src/x509_ca.cpp +++ b/src/x509_ca.cpp @@ -37,7 +37,7 @@ X509_CA::X509_CA(const X509_Certificate& c, std::string padding; Signature_Format format; - ConfigXXX::choose_sig_format(key.algo_name(), padding, format); + Config::choose_sig_format(key.algo_name(), padding, format); ca_sig_algo.oid = OIDS::lookup(key.algo_name() + "/" + padding); ca_sig_algo.parameters = key.DER_encode_params(); |