aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/stream/salsa20/salsa20.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/stream/salsa20/salsa20.h')
-rw-r--r--src/lib/stream/salsa20/salsa20.h6
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;
};
}