blob: a19b6572cd0d0a5f5e6a6cf1b1027ee673e5985e (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*************************************************
* 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 std::string& algo_spec) const
{
SCAN_Name request(algo_spec);
#if defined(BOTAN_HAS_ARC4)
if(request.algo_name() == "ARC4")
return new ARC4(request.argument_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;
}
/*************************************************
* Look for an algorithm with this name *
*************************************************/
BlockCipherModePaddingMethod*
Default_Engine::find_bc_pad(const std::string& algo_spec) const
{
SCAN_Name request(algo_spec);
#if defined(BOTAN_HAS_CIPHER_MODE_PADDING)
if(request.algo_name() == "PKCS7")
return new PKCS7_Padding;
if(request.algo_name() == "OneAndZeros")
return new OneAndZeros_Padding;
if(request.algo_name() == "X9.23")
return new ANSI_X923_Padding;
if(request.algo_name() == "NoPadding")
return new Null_Padding;
#endif
return 0;
}
}
|