aboutsummaryrefslogtreecommitdiffstats
path: root/include/rsa.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-05-25 21:57:32 +0000
committerlloyd <[email protected]>2008-05-25 21:57:32 +0000
commit4e3ed1be76906bcd3440dd3fbf78569a0d684dfc (patch)
treea9b560c141ca03c74ba776a7d26ad9838a30b5f2 /include/rsa.h
parent729cbc8ea0a181b1fb1425980e30649afd9195cc (diff)
Reindent
Diffstat (limited to 'include/rsa.h')
-rw-r--r--include/rsa.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/rsa.h b/include/rsa.h
index 16408c471..e9f92db51 100644
--- a/include/rsa.h
+++ b/include/rsa.h
@@ -14,8 +14,8 @@ namespace Botan {
* RSA Public Key *
*************************************************/
class BOTAN_DLL RSA_PublicKey : public PK_Encrypting_Key,
- public PK_Verifying_with_MR_Key,
- public virtual IF_Scheme_PublicKey
+ public PK_Verifying_with_MR_Key,
+ public virtual IF_Scheme_PublicKey
{
public:
std::string algo_name() const { return "RSA"; }
@@ -33,9 +33,9 @@ class BOTAN_DLL RSA_PublicKey : public PK_Encrypting_Key,
* RSA Private Key *
*************************************************/
class BOTAN_DLL RSA_PrivateKey : public RSA_PublicKey,
- public PK_Decrypting_Key,
- public PK_Signing_Key,
- public IF_Scheme_PrivateKey
+ public PK_Decrypting_Key,
+ public PK_Signing_Key,
+ public IF_Scheme_PrivateKey
{
public:
SecureVector<byte> decrypt(const byte[], u32bit) const;