diff options
author | lloyd <lloyd@randombit.net> | 2008-05-25 21:57:32 +0000 |
---|---|---|
committer | lloyd <lloyd@randombit.net> | 2008-05-25 21:57:32 +0000 |
commit | 4e3ed1be76906bcd3440dd3fbf78569a0d684dfc (patch) | |
tree | a9b560c141ca03c74ba776a7d26ad9838a30b5f2 /include/rw.h | |
parent | 729cbc8ea0a181b1fb1425980e30649afd9195cc (diff) |
Reindent
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; |