blob: 6bd85b3e15c5d1363530999b3c844e2052621760 (
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
86
87
88
|
/*************************************************
* PBE Retrieval Source File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#include <botan/lookup.h>
#include <botan/pbe.h>
#include <botan/oids.h>
#include <botan/parsing.h>
#if defined(BOTAN_HAS_PBE_PKCS_V15)
#include <botan/pbes1.h>
#endif
#if defined(BOTAN_HAS_PBE_PKCS_V20)
#include <botan/pbes2.h>
#endif
namespace Botan {
/*************************************************
* Get an encryption PBE, set new parameters *
*************************************************/
PBE* get_pbe(const std::string& pbe_name)
{
std::vector<std::string> algo_name;
algo_name = parse_algorithm_name(pbe_name);
if(algo_name.size() != 3)
throw Invalid_Algorithm_Name(pbe_name);
const std::string pbe = algo_name[0];
const std::string digest = algo_name[1];
const std::string cipher = algo_name[2];
PBE* pbe_obj = 0;
#if defined(BOTAN_HAS_PBE_PKCS_V15)
if(!pbe_obj && pbe == "PBE-PKCS5v15")
pbe_obj = new PBE_PKCS5v15(digest, cipher, ENCRYPTION);
#endif
#if defined(BOTAN_HAS_PBE_PKCS_V20)
if(!pbe_obj && pbe == "PBE-PKCS5v20")
pbe_obj = new PBE_PKCS5v20(digest, cipher);
#endif
if(!pbe_obj)
throw Algorithm_Not_Found(pbe_name);
return pbe_obj;
}
/*************************************************
* Get a decryption PBE, decode parameters *
*************************************************/
PBE* get_pbe(const OID& pbe_oid, DataSource& params)
{
std::vector<std::string> algo_name;
algo_name = parse_algorithm_name(OIDS::lookup(pbe_oid));
if(algo_name.size() < 1)
throw Invalid_Algorithm_Name(pbe_oid.as_string());
const std::string pbe_algo = algo_name[0];
if(pbe_algo == "PBE-PKCS5v15")
{
#if defined(BOTAN_HAS_PBE_PKCS_V15)
if(algo_name.size() != 3)
throw Invalid_Algorithm_Name(pbe_oid.as_string());
const std::string digest = algo_name[1];
const std::string cipher = algo_name[2];
PBE* pbe = new PBE_PKCS5v15(digest, cipher, DECRYPTION);
pbe->decode_params(params);
return pbe;
#endif
}
else if(pbe_algo == "PBE-PKCS5v20")
{
#if defined(BOTAN_HAS_PBE_PKCS_V20)
return new PBE_PKCS5v20(params);
#endif
}
throw Algorithm_Not_Found(pbe_oid.as_string());
}
}
|