blob: 4350dca864b2d44d589edc4e40e04a2e47e1613c (
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
89
90
91
92
93
94
95
96
97
|
/**
* SCAN Name Abstraction
* (C) 2008 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_SCAN_NAME_H__
#define BOTAN_SCAN_NAME_H__
#include <botan/types.h>
#include <string>
#include <vector>
#include <set>
namespace Botan {
/**
A class encapsulating a SCAN name (similar to JCE conventions)
http://www.users.zetnet.co.uk/hopwood/crypto/scan/
*/
class BOTAN_DLL SCAN_Name
{
public:
/**
@param algo_spec A SCAN-format name
*/
SCAN_Name(std::string algo_spec);
/**
@return the original input string
*/
std::string as_string() const { return orig_algo_spec; }
/**
@return the algorithm name
*/
std::string algo_name() const { return alg_name; }
/**
@return the algorithm name plus any arguments
*/
std::string algo_name_and_args() const;
/**
@return the number of arguments
*/
u32bit arg_count() const { return args.size(); }
/**
@return if the number of arguments is between lower and upper
*/
bool arg_count_between(u32bit lower, u32bit upper) const
{ return ((arg_count() >= lower) && (arg_count() <= upper)); }
/**
@param i which argument
@return the ith argument
*/
std::string arg(u32bit i) const;
/**
@param i which argument
@param def_value the default value
@return the ith argument or the default value
*/
std::string arg(u32bit i, const std::string& def_value) const;
/**
@param i which argument
@param def_value the default value
@return the ith argument as a u32bit, or the default value
*/
u32bit arg_as_u32bit(u32bit i, u32bit def_value) const;
/**
@return the cipher mode (if any)
*/
std::string cipher_mode() const
{ return (mode_info.size() >= 1) ? mode_info[0] : ""; }
/**
@return the cipher mode padding (if any)
*/
std::string cipher_mode_pad() const
{ return (mode_info.size() >= 2) ? mode_info[1] : ""; }
private:
std::string orig_algo_spec;
std::string alg_name;
std::vector<std::string> args;
std::vector<std::string> mode_info;
};
}
#endif
|