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
86
87
88
89
90
91
92
93
94
|
/*
* EME Base Class
* (C) 1999-2008 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/eme.h>
#include <botan/scan_name.h>
#include <botan/exceptn.h>
#include <botan/internal/parsing.h>
#if defined(BOTAN_HAS_EME_OAEP)
#include <botan/internal/oaep.h>
#endif
#if defined(BOTAN_HAS_EME_PKCS1)
#include <botan/internal/eme_pkcs.h>
#endif
#if defined(BOTAN_HAS_EME_RAW)
#include <botan/internal/eme_raw.h>
#endif
namespace Botan {
EME* get_eme(const std::string& algo_spec)
{
#if defined(BOTAN_HAS_EME_RAW)
if(algo_spec == "Raw")
return new EME_Raw;
#endif
#if defined(BOTAN_HAS_EME_PKCS1)
if(algo_spec == "PKCS1v15" || algo_spec == "EME-PKCS1-v1_5")
return new EME_PKCS1v15;
#endif
#if defined(BOTAN_HAS_EME_OAEP)
SCAN_Name req(algo_spec);
if(req.algo_name() == "OAEP" ||
req.algo_name() == "EME-OAEP" ||
req.algo_name() == "EME1")
{
if(req.arg_count() == 1 ||
((req.arg_count() == 2 || req.arg_count() == 3) && req.arg(1) == "MGF1"))
{
if(auto hash = HashFunction::create(req.arg(0)))
return new OAEP(hash.release(), req.arg(2, ""));
}
else if(req.arg_count() == 2 || req.arg_count() == 3)
{
auto mgf_params = parse_algorithm_name(req.arg(1));
if(mgf_params.size() == 2 && mgf_params[0] == "MGF1")
{
auto hash = HashFunction::create(req.arg(0));
auto mgf1_hash = HashFunction::create(mgf_params[1]);
if(hash && mgf1_hash)
{
return new OAEP(hash.release(), mgf1_hash.release(), req.arg(2, ""));
}
}
}
}
#endif
throw Algorithm_Not_Found(algo_spec);
}
/*
* Encode a message
*/
secure_vector<uint8_t> EME::encode(const uint8_t msg[], size_t msg_len,
size_t key_bits,
RandomNumberGenerator& rng) const
{
return pad(msg, msg_len, key_bits, rng);
}
/*
* Encode a message
*/
secure_vector<uint8_t> EME::encode(const secure_vector<uint8_t>& msg,
size_t key_bits,
RandomNumberGenerator& rng) const
{
return pad(msg.data(), msg.size(), key_bits, rng);
}
}
|