aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/tea/tea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/tea/tea.h')
-rw-r--r--src/lib/block/tea/tea.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/tea/tea.h b/src/lib/block/tea/tea.h
index 3c5b4773e..fd2b5fe36 100644
--- a/src/lib/block/tea/tea.h
+++ b/src/lib/block/tea/tea.h
@@ -26,7 +26,7 @@ class BOTAN_DLL TEA : public Block_Cipher_Fixed_Params<8, 16>
BlockCipher* clone() const override { return new TEA; }
private:
void key_schedule(const byte[], size_t) override;
- secure_vector<u32bit> K;
+ secure_vector<u32bit> m_K;
};
}