diff options
author | lloyd <[email protected]> | 2010-03-08 15:45:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-08 15:45:43 +0000 |
commit | 868c7f7d9c306e6e15d24f2b32e529aa1956516e (patch) | |
tree | 2d179e2ff08144c63ad5d7462cd5923524a92d33 /src/libstate | |
parent | 8a47f6f2bbf169a2ea0853234f81b49070c770df (diff) |
Rename PK_Encryptor_MR_with_EME and PK_Decryptor_MR_with_EME to
PK_Encryptor_EME and PK_Decryptor_EME; the message recovery is somewhat
implicit in the recovery of the plaintext.
Diffstat (limited to 'src/libstate')
-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); } /** |