aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/idea/idea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/idea/idea.h')
-rw-r--r--src/lib/block/idea/idea.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/block/idea/idea.h b/src/lib/block/idea/idea.h
index 68d4d61b0..59f98da9e 100644
--- a/src/lib/block/idea/idea.h
+++ b/src/lib/block/idea/idea.h
@@ -28,17 +28,17 @@ class BOTAN_DLL IDEA : public Block_Cipher_Fixed_Params<8, 16>
/**
* @return const reference to encryption subkeys
*/
- const secure_vector<u16bit>& get_EK() const { return EK; }
+ const secure_vector<u16bit>& get_EK() const { return m_EK; }
/**
* @return const reference to decryption subkeys
*/
- const secure_vector<u16bit>& get_DK() const { return DK; }
+ const secure_vector<u16bit>& get_DK() const { return m_DK; }
private:
void key_schedule(const byte[], size_t) override;
- secure_vector<u16bit> EK, DK;
+ secure_vector<u16bit> m_EK, m_DK;
};
}