aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/rc6/rc6.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/rc6/rc6.h')
-rw-r--r--src/lib/block/rc6/rc6.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/rc6/rc6.h b/src/lib/block/rc6/rc6.h
index 1ff7304ed..a84d06a9b 100644
--- a/src/lib/block/rc6/rc6.h
+++ b/src/lib/block/rc6/rc6.h
@@ -27,7 +27,7 @@ class BOTAN_DLL RC6 : public Block_Cipher_Fixed_Params<16, 1, 32>
private:
void key_schedule(const byte[], size_t) override;
- secure_vector<u32bit> S;
+ secure_vector<u32bit> m_S;
};
}