diff options
author | lloyd <[email protected]> | 2010-06-11 20:59:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-11 20:59:59 +0000 |
commit | 5cac6e585b576b09c94409bb726055c4e26a6b82 (patch) | |
tree | fcef75d22341e49bab1b680ccd254012a8c43265 | |
parent | 09d64457228121435877891c67228393f8de374f (diff) |
Add typedefs in pubkey.h to match the 1.9 names
-rw-r--r-- | src/pubkey/pubkey.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pubkey/pubkey.h b/src/pubkey/pubkey.h index c73a54d35..bba93ab56 100644 --- a/src/pubkey/pubkey.h +++ b/src/pubkey/pubkey.h @@ -337,6 +337,12 @@ class BOTAN_DLL PK_Decryptor_MR_with_EME : public PK_Decryptor const EME* encoder; }; +/* +* Typedefs for easier transition between 1.8 and 1.9/1.10 +*/ +typedef PK_Encryptor_MR_with_EME PK_Encryptor_EME; +typedef PK_Decryptor_MR_with_EME PK_Decryptor_EME; + /** * Public Key Verifier with Message Recovery. */ |