diff options
author | Jack Lloyd <[email protected]> | 2016-07-18 16:57:28 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-09-02 05:28:57 -0400 |
commit | fb84ed67c616928354999b285f3ee4fb486f0f5b (patch) | |
tree | e614c340abdd3691d31afd7a979b4ab4115f3074 /src/cli/pubkey.cpp | |
parent | a5a260ca52efb43083d654805dce773580102cb9 (diff) |
Remove deprecated Nyberg-Rueppel and Rabin-Williams signatures
Diffstat (limited to 'src/cli/pubkey.cpp')
-rw-r--r-- | src/cli/pubkey.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cli/pubkey.cpp b/src/cli/pubkey.cpp index a482b6e46..456ebbc8b 100644 --- a/src/cli/pubkey.cpp +++ b/src/cli/pubkey.cpp @@ -156,8 +156,6 @@ std::string algo_default_emsa(const std::string& key) return "EMSA4"; // PSS else if(key == "ECDSA" || key == "DSA") return "EMSA1"; - else if(key == "RW") - return "EMSA2"; else return "EMSA1"; } |