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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
use crate::authenticators::ApplicationName;
use parsec_interface::operations::psa_key_attributes::Attributes;
use parsec_interface::requests::{ProviderID, ResponseStatus};
use serde::{Deserialize, Serialize};
use std::fmt;
use zeroize::Zeroize;
pub mod on_disk_manager;
#[derive(Copy, Clone, Deserialize, Debug)]
pub enum KeyInfoManagerType {
OnDisk,
}
#[derive(Deserialize, Debug)]
pub struct KeyInfoManagerConfig {
pub name: String,
pub manager_type: KeyInfoManagerType,
pub store_path: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct KeyTriple {
app_name: ApplicationName,
provider_id: ProviderID,
key_name: String,
}
impl fmt::Display for KeyTriple {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"Application Name: \"{}\", Provider ID: {}, Key Name: \"{}\"",
self.app_name, self.provider_id, self.key_name
)
}
}
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone, Zeroize)]
#[zeroize(drop)]
pub struct KeyInfo {
pub id: Vec<u8>,
pub attributes: Attributes,
}
impl KeyTriple {
pub fn new(app_name: ApplicationName, provider_id: ProviderID, key_name: String) -> KeyTriple {
KeyTriple {
app_name,
provider_id,
key_name,
}
}
pub fn belongs_to_provider(&self, provider_id: ProviderID) -> bool {
self.provider_id == provider_id
}
pub fn key_name(&self) -> &str {
&self.key_name
}
pub fn app_name(&self) -> &ApplicationName {
&self.app_name
}
}
pub fn to_response_status(error_string: String) -> ResponseStatus {
format_error!(
"Converting error to ResponseStatus:KeyInfoManagerError",
error_string
);
ResponseStatus::KeyInfoManagerError
}
pub trait ManageKeyInfo {
fn get(&self, key_triple: &KeyTriple) -> Result<Option<&KeyInfo>, String>;
fn get_all(&self, provider_id: ProviderID) -> Result<Vec<&KeyTriple>, String>;
fn insert(
&mut self,
key_triple: KeyTriple,
key_info: KeyInfo,
) -> Result<Option<KeyInfo>, String>;
fn remove(&mut self, key_triple: &KeyTriple) -> Result<Option<KeyInfo>, String>;
fn exists(&self, key_triple: &KeyTriple) -> Result<bool, String>;
}