blob: 72eb63b7c0e7ad068214f81ca70cfb7f96ea76d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Stream Cipher
* (C) 1999-2010 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/stream_cipher.h>
namespace Botan {
void StreamCipher::set_iv(const byte[], size_t iv_len)
{
if(iv_len)
throw Invalid_Argument("The stream cipher " + name() +
" does not support resyncronization");
}
bool StreamCipher::valid_iv_length(size_t iv_len) const
{
return (iv_len == 0);
}
}
|