diff options
author | lloyd <[email protected]> | 2014-01-31 22:30:50 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-31 22:30:50 +0000 |
commit | e11024f26113189f45ca1759f6a045ca6989849e (patch) | |
tree | 33ea9eb4c4faabc899fa03aff5132e00a21f5d84 /src/lib/stream/salsa20/salsa20.h | |
parent | 9332870c160d7a02f1bef6f249fa1baae196dc51 (diff) |
Add ChaCha
Diffstat (limited to 'src/lib/stream/salsa20/salsa20.h')
-rw-r--r-- | src/lib/stream/salsa20/salsa20.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/stream/salsa20/salsa20.h b/src/lib/stream/salsa20/salsa20.h index b68bb979e..69a9ea62f 100644 --- a/src/lib/stream/salsa20/salsa20.h +++ b/src/lib/stream/salsa20/salsa20.h @@ -36,9 +36,9 @@ class BOTAN_DLL Salsa20 : public StreamCipher private: void key_schedule(const byte key[], size_t key_len); - secure_vector<u32bit> state; - secure_vector<byte> buffer; - size_t position; + secure_vector<u32bit> m_state; + secure_vector<byte> m_buffer; + size_t m_position; }; } |