aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/stream/chacha/chacha.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-12-31 12:57:47 +0000
committerlloyd <[email protected]>2014-12-31 12:57:47 +0000
commitb5b92a8a3847e2f3ad5ea2b429c4c6129ed6cb53 (patch)
tree850bfce01ac98e6d3b90e28157535d45ef043f76 /src/lib/stream/chacha/chacha.cpp
parent28eaccc661862b5e129e1226e2a0ac6af99bec75 (diff)
Decruft
Diffstat (limited to 'src/lib/stream/chacha/chacha.cpp')
-rw-r--r--src/lib/stream/chacha/chacha.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/stream/chacha/chacha.cpp b/src/lib/stream/chacha/chacha.cpp
index 419f8f67a..f404b3933 100644
--- a/src/lib/stream/chacha/chacha.cpp
+++ b/src/lib/stream/chacha/chacha.cpp
@@ -124,9 +124,6 @@ void ChaCha::key_schedule(const byte key[], size_t length)
set_iv(ZERO, sizeof(ZERO));
}
-/*
-* Return the name of this type
-*/
void ChaCha::set_iv(const byte iv[], size_t length)
{
if(!valid_iv_length(length))
@@ -154,17 +151,6 @@ void ChaCha::set_iv(const byte iv[], size_t length)
m_position = 0;
}
-/*
-* Return the name of this type
-*/
-std::string ChaCha::name() const
- {
- return "ChaCha";
- }
-
-/*
-* Clear memory of sensitive data
-*/
void ChaCha::clear()
{
zap(m_state);