aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/rc2/rc2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/rc2/rc2.h')
-rw-r--r--src/lib/block/rc2/rc2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/rc2/rc2.h b/src/lib/block/rc2/rc2.h
index 11956f408..76391791a 100644
--- a/src/lib/block/rc2/rc2.h
+++ b/src/lib/block/rc2/rc2.h
@@ -34,7 +34,7 @@ class BOTAN_DLL RC2 : public Block_Cipher_Fixed_Params<8, 1, 32>
private:
void key_schedule(const byte[], size_t) override;
- secure_vector<u16bit> K;
+ secure_vector<u16bit> m_K;
};
}