diff options
Diffstat (limited to 'src/stream/ofb/ofb.cpp')
-rw-r--r-- | src/stream/ofb/ofb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/ofb/ofb.cpp b/src/stream/ofb/ofb.cpp index 1b1a066ee..921401d32 100644 --- a/src/stream/ofb/ofb.cpp +++ b/src/stream/ofb/ofb.cpp @@ -45,7 +45,7 @@ void OFB::clear() /* * Set the key */ -void OFB::key_schedule(const byte key[], u32bit key_len) +void OFB::key_schedule(const byte key[], size_t key_len) { permutation->set_key(key, key_len); |