blob: e7f1ff41d454dda5e0a66170658193f7b9b80a9c (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*************************************************
* Stream Cipher Lookup *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#include <botan/def_eng.h>
#include <botan/scan_name.h>
#if defined(BOTAN_HAS_ARC4)
#include <botan/arc4.h>
#endif
#if defined(BOTAN_HAS_SALSA20)
#include <botan/salsa20.h>
#endif
#if defined(BOTAN_HAS_TURING)
#include <botan/turing.h>
#endif
#if defined(BOTAN_HAS_WID_WAKE)
#include <botan/wid_wake.h>
#endif
namespace Botan {
/*************************************************
* Look for an algorithm with this name *
*************************************************/
StreamCipher*
Default_Engine::find_stream_cipher(const SCAN_Name& request,
Algorithm_Factory&) const
{
#if defined(BOTAN_HAS_ARC4)
if(request.algo_name() == "ARC4")
return new ARC4(request.arg_as_u32bit(0, 0));
if(request.algo_name() == "RC4_drop")
return new ARC4(768);
#endif
#if defined(BOTAN_HAS_SALSA20)
if(request.algo_name() == "Salsa20")
return new Salsa20;
#endif
#if defined(BOTAN_HAS_TURING)
if(request.algo_name() == "Turing")
return new Turing;
#endif
#if defined(BOTAN_HAS_WID_WAKE)
if(request.algo_name() == "WiderWake4+1-BE")
return new WiderWake_41_BE;
#endif
return 0;
}
}
|