From 4f474481f46bffc095ae104485b8da95bcb03973 Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 5 Nov 2014 12:00:24 +0000 Subject: Replace Transformatio::nstart with start_raw so we can do a full set of overloads in the base class with the same name. --- src/lib/modes/cbc/cbc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/modes/cbc/cbc.cpp') diff --git a/src/lib/modes/cbc/cbc.cpp b/src/lib/modes/cbc/cbc.cpp index 5fe5c8b17..c527014f4 100644 --- a/src/lib/modes/cbc/cbc.cpp +++ b/src/lib/modes/cbc/cbc.cpp @@ -62,7 +62,7 @@ void CBC_Mode::key_schedule(const byte key[], size_t length) m_cipher->set_key(key, length); } -secure_vector CBC_Mode::start(const byte nonce[], size_t nonce_len) +secure_vector CBC_Mode::start_raw(const byte nonce[], size_t nonce_len) { if(!valid_nonce_length(nonce_len)) throw Invalid_IV_Length(name(), nonce_len); -- cgit v1.2.3