aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/cert/x509
diff options
context:
space:
mode:
authorDaniel Neus <[email protected]>2016-05-02 12:31:46 +0200
committerDaniel Neus <[email protected]>2016-05-02 12:31:46 +0200
commita32deb7296d6052092601c5900e1f71c84382736 (patch)
tree03574d4b0efd22dc42700be68bb366d785bf5801 /src/lib/cert/x509
parent7c85cf078445841699b67d12b3baec011bd129f6 (diff)
remove all uses of EMSA1_BSI
Diffstat (limited to 'src/lib/cert/x509')
-rw-r--r--src/lib/cert/x509/x509_ca.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/cert/x509/x509_ca.cpp b/src/lib/cert/x509/x509_ca.cpp
index 46c8c65f2..147fdd6ad 100644
--- a/src/lib/cert/x509/x509_ca.cpp
+++ b/src/lib/cert/x509/x509_ca.cpp
@@ -234,10 +234,8 @@ PK_Signer* choose_sig_format(const Private_Key& key,
std::string padding;
if(algo_name == "RSA")
padding = "EMSA3";
- else if(algo_name == "DSA")
+ else if(algo_name == "DSA" || algo_name == "ECDSA" )
padding = "EMSA1";
- else if(algo_name == "ECDSA")
- padding = "EMSA1_BSI";
else
throw Invalid_Argument("Unknown X.509 signing key type: " + algo_name);