diff options
author | lloyd <[email protected]> | 2010-03-08 14:48:25 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-08 14:48:25 +0000 |
commit | 05f6d6c8edec9907778f362c927f368140fee6a2 (patch) | |
tree | 869a5fde0e8ed16fab8b69840fed1a26851f43c0 /src/libstate/look_pk.h | |
parent | 075de69e745fb407c895475649dbe11483bf04bd (diff) |
Have the constructors in pubkey.h take all arguments look_pk does, and
convert look_pk to simple forwarders.
Diffstat (limited to 'src/libstate/look_pk.h')
-rw-r--r-- | src/libstate/look_pk.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/libstate/look_pk.h b/src/libstate/look_pk.h index 459f19564..59fe7d8c8 100644 --- a/src/libstate/look_pk.h +++ b/src/libstate/look_pk.h @@ -22,7 +22,7 @@ namespace Botan { inline PK_Encryptor* get_pk_encryptor(const Public_Key& key, const std::string& eme) { - return new PK_Encryptor_MR_with_EME(key, get_eme(eme)); + return new PK_Encryptor_MR_with_EME(key, eme); } /** @@ -34,7 +34,7 @@ inline PK_Encryptor* get_pk_encryptor(const Public_Key& key, inline PK_Decryptor* get_pk_decryptor(const Private_Key& key, const std::string& eme) { - return new PK_Decryptor_MR_with_EME(key, get_eme(eme)); + return new PK_Decryptor_MR_with_EME(key, eme); } /** @@ -48,9 +48,7 @@ inline PK_Signer* get_pk_signer(const Private_Key& key, const std::string& emsa, Signature_Format sig_format = IEEE_1363) { - PK_Signer* signer = new PK_Signer(key, get_emsa(emsa)); - signer->set_output_format(sig_format); - return signer; + return new PK_Signer(key, emsa, sig_format); } /** @@ -64,9 +62,7 @@ inline PK_Verifier* get_pk_verifier(const Public_Key& key, const std::string& emsa, Signature_Format sig_format = IEEE_1363) { - PK_Verifier* verifier = new PK_Verifier(key, get_emsa(emsa)); - verifier->set_input_format(sig_format); - return verifier; + return new PK_Verifier(key, emsa, sig_format); } /** @@ -78,7 +74,7 @@ inline PK_Verifier* get_pk_verifier(const Public_Key& key, inline PK_Key_Agreement* get_pk_kas(const PK_Key_Agreement_Key& key, const std::string& kdf) { - return new PK_Key_Agreement(key, get_kdf(kdf)); + return new PK_Key_Agreement(key, kdf); } } |