diff options
Diffstat (limited to 'src/libstate/look_pk.h')
-rw-r--r-- | src/libstate/look_pk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstate/look_pk.h b/src/libstate/look_pk.h index 59fe7d8c8..833b28f67 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, eme); + return new PK_Encryptor_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, eme); + return new PK_Decryptor_EME(key, eme); } /** |