aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/rc5/rc5.h
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2015-12-23 11:52:19 +0100
committerJack Lloyd <[email protected]>2016-01-08 19:09:51 -0500
commitd22bc10cd4f67924acd82bcd46a31e3de3b20ce3 (patch)
tree58459585e6675cd799b6ef5900be026825cd6f9d /src/lib/block/rc5/rc5.h
parent2fbfdd7e5afb5e888fd8c0b56c6df09e2bdeaca7 (diff)
Mass-prefix member vars with m_
Diffstat (limited to 'src/lib/block/rc5/rc5.h')
-rw-r--r--src/lib/block/rc5/rc5.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/block/rc5/rc5.h b/src/lib/block/rc5/rc5.h
index b8ff1c3f7..cb76d51f1 100644
--- a/src/lib/block/rc5/rc5.h
+++ b/src/lib/block/rc5/rc5.h
@@ -23,7 +23,7 @@ class BOTAN_DLL RC5 : public Block_Cipher_Fixed_Params<8, 1, 32>
void clear() override;
std::string name() const override;
- BlockCipher* clone() const override { return new RC5(rounds); }
+ BlockCipher* clone() const override { return new RC5(m_rounds); }
/**
* @param rounds the number of RC5 rounds to run. Must be between
@@ -33,8 +33,8 @@ class BOTAN_DLL RC5 : public Block_Cipher_Fixed_Params<8, 1, 32>
private:
void key_schedule(const byte[], size_t) override;
- size_t rounds;
- secure_vector<u32bit> S;
+ size_t m_rounds;
+ secure_vector<u32bit> m_S;
};
}