blob: c6062667b27d330f3d16b2181dc6fa1eee559cad (
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
25
|
/*
* (C) 2018 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/sym_algo.h>
#include <botan/exceptn.h>
namespace Botan {
void SymmetricAlgorithm::verify_key_set(bool cond) const
{
if(cond == false)
throw Key_Not_Set(name());
}
void SymmetricAlgorithm::set_key(const uint8_t key[], size_t length)
{
if(!valid_keylength(length))
throw Invalid_Key_Length(name(), length);
key_schedule(key, length);
}
}
|