blob: b26bbedcd53fd2016f357e2f0c85792611fc63d2 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* Stream Cipher Lookup
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/internal/core_engine.h>
#include <botan/scan_name.h>
#if defined(BOTAN_HAS_RC4)
#include <botan/rc4.h>
#endif
#if defined(BOTAN_HAS_SALSA20)
#include <botan/salsa20.h>
#endif
namespace Botan {
/*
* Look for an algorithm with this name
*/
StreamCipher*
Core_Engine::find_stream_cipher(const SCAN_Name& request,
Algorithm_Factory&) const
{
#if defined(BOTAN_HAS_RC4)
if(request.algo_name() == "RC4")
return new RC4(request.arg_as_integer(0, 0));
if(request.algo_name() == "RC4_drop")
return new RC4(768);
#endif
#if defined(BOTAN_HAS_SALSA20)
if(request.algo_name() == "Salsa20")
return new Salsa20;
#endif
return nullptr;
}
}
|