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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
use crate::utils::{wrap_err, TinkError};
use std::collections::{hash_map, HashMap};
#[derive(Clone)]
pub struct Entry {
pub key_id: crate::KeyId,
pub primitive: crate::Primitive,
pub prefix: Vec<u8>,
pub prefix_type: tink_proto::OutputPrefixType,
pub status: tink_proto::KeyStatusType,
}
impl Entry {
fn new(
key_id: crate::KeyId,
p: crate::Primitive,
prefix: &[u8],
prefix_type: tink_proto::OutputPrefixType,
status: tink_proto::KeyStatusType,
) -> Self {
Entry {
key_id,
primitive: p,
prefix: prefix.to_vec(),
prefix_type,
status,
}
}
}
#[derive(Clone, Default)]
pub struct PrimitiveSet {
pub primary: Option<Entry>,
pub entries: HashMap<Vec<u8>, Vec<Entry>>,
}
impl PrimitiveSet {
pub fn new() -> Self {
PrimitiveSet {
primary: None,
entries: HashMap::new(),
}
}
pub fn raw_entries(&self) -> Vec<Entry> {
self.entries_for_prefix(&crate::cryptofmt::RAW_PREFIX)
}
pub fn entries_for_prefix(&self, prefix: &[u8]) -> Vec<Entry> {
match self.entries.get(prefix) {
Some(v) => v.clone(),
None => Vec::new(),
}
}
pub fn add(
&mut self,
p: crate::Primitive,
key: &tink_proto::keyset::Key,
) -> Result<Entry, TinkError> {
if key.status != tink_proto::KeyStatusType::Enabled as i32 {
return Err("The key must be ENABLED".into());
}
let prefix =
crate::cryptofmt::output_prefix(key).map_err(|e| wrap_err("primitiveset", e))?;
let entry = Entry::new(
key.key_id,
p,
&prefix,
tink_proto::OutputPrefixType::from_i32(key.output_prefix_type)
.ok_or_else(|| TinkError::new("invalid key prefix type"))?,
tink_proto::KeyStatusType::from_i32(key.status)
.ok_or_else(|| TinkError::new("invalid key status"))?,
);
let retval = entry.clone();
match self.entries.entry(prefix) {
hash_map::Entry::Occupied(mut oe) => oe.get_mut().push(entry),
hash_map::Entry::Vacant(ve) => {
ve.insert(vec![entry]);
}
};
Ok(retval)
}
}
pub struct TypedEntry<P: From<crate::Primitive>> {
pub key_id: crate::KeyId,
pub primitive: P,
pub prefix: Vec<u8>,
pub prefix_type: tink_proto::OutputPrefixType,
pub status: tink_proto::KeyStatusType,
}
impl<P: From<crate::Primitive>> From<Entry> for TypedEntry<P> {
fn from(entry: Entry) -> Self {
Self {
key_id: entry.key_id,
primitive: entry.primitive.into(),
prefix: entry.prefix,
prefix_type: entry.prefix_type,
status: entry.status,
}
}
}
pub struct TypedPrimitiveSet<P: From<crate::Primitive>> {
pub primary: Option<TypedEntry<P>>,
pub entries: HashMap<Vec<u8>, Vec<TypedEntry<P>>>,
}
impl<P: From<crate::Primitive>> TypedPrimitiveSet<P> {
pub fn raw_entries(&self) -> Option<&Vec<TypedEntry<P>>> {
self.entries_for_prefix(&crate::cryptofmt::RAW_PREFIX)
}
pub fn entries_for_prefix(&self, prefix: &[u8]) -> Option<&Vec<TypedEntry<P>>> {
match self.entries.get(prefix) {
Some(v) => Some(&v),
None => None,
}
}
}
impl<T> Clone for TypedPrimitiveSet<T>
where
TypedEntry<T>: Clone,
T: From<crate::Primitive>,
{
fn clone(&self) -> Self {
Self {
primary: self.primary.as_ref().cloned(),
entries: self.entries.clone(),
}
}
}
impl<P: From<crate::Primitive>> From<PrimitiveSet> for TypedPrimitiveSet<P> {
fn from(ps: PrimitiveSet) -> Self {
Self {
primary: ps.primary.map(|e| e.into()),
entries: ps
.entries
.into_iter()
.map(|(k, v)| (k, v.into_iter().map(TypedEntry::<P>::from).collect()))
.collect(),
}
}
}
impl Clone for TypedEntry<Box<dyn crate::Aead>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}
impl Clone for TypedEntry<Box<dyn crate::DeterministicAead>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}
impl Clone for TypedEntry<Box<dyn crate::Mac>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}
impl Clone for TypedEntry<Box<dyn crate::Signer>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}
impl Clone for TypedEntry<Box<dyn crate::StreamingAead>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}
impl Clone for TypedEntry<Box<dyn crate::Verifier>> {
fn clone(&self) -> Self {
Self {
key_id: self.key_id,
primitive: self.primitive.box_clone(),
prefix: self.prefix.clone(),
prefix_type: self.prefix_type,
status: self.status,
}
}
}