diff options
Diffstat (limited to 'include/rw.h')
-rw-r--r-- | include/rw.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rw.h b/include/rw.h index 0d22711df..a809041d1 100644 --- a/include/rw.h +++ b/include/rw.h @@ -14,7 +14,7 @@ namespace Botan { * Rabin-Williams Public Key * *************************************************/ class BOTAN_DLL RW_PublicKey : public PK_Verifying_with_MR_Key, - public virtual IF_Scheme_PublicKey + public virtual IF_Scheme_PublicKey { public: std::string algo_name() const { return "RW"; } @@ -31,8 +31,8 @@ class BOTAN_DLL RW_PublicKey : public PK_Verifying_with_MR_Key, * Rabin-Williams Private Key * *************************************************/ class BOTAN_DLL RW_PrivateKey : public RW_PublicKey, - public PK_Signing_Key, - public IF_Scheme_PrivateKey + public PK_Signing_Key, + public IF_Scheme_PrivateKey { public: SecureVector<byte> sign(const byte[], u32bit) const; |