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
use prost::Message;
use tink_proto::{HashType, KeyTemplate, OutputPrefixType};
pub fn aes128_gcm_key_template() -> KeyTemplate {
create_aes_gcm_key_template(16, OutputPrefixType::Tink)
}
pub fn aes256_gcm_key_template() -> KeyTemplate {
create_aes_gcm_key_template(32, OutputPrefixType::Tink)
}
pub fn aes256_gcm_no_prefix_key_template() -> KeyTemplate {
create_aes_gcm_key_template(32, OutputPrefixType::Raw)
}
pub fn aes128_gcm_siv_key_template() -> KeyTemplate {
create_aes_gcm_siv_key_template(16, OutputPrefixType::Tink)
}
pub fn aes256_gcm_siv_key_template() -> KeyTemplate {
create_aes_gcm_siv_key_template(32, OutputPrefixType::Tink)
}
pub fn aes256_gcm_siv_no_prefix_key_template() -> KeyTemplate {
create_aes_gcm_siv_key_template(32, OutputPrefixType::Raw)
}
pub fn aes128_ctr_hmac_sha256_key_template() -> KeyTemplate {
create_aes_ctr_hmac_aead_key_template(16, 16, 32, 16, HashType::Sha256)
}
pub fn aes256_ctr_hmac_sha256_key_template() -> KeyTemplate {
create_aes_ctr_hmac_aead_key_template(32, 16, 32, 32, HashType::Sha256)
}
pub fn aes256_ctr_hmac_sha512_key_template() -> KeyTemplate {
create_aes_ctr_hmac_aead_key_template(32, 16, 64, 64, HashType::Sha512)
}
pub fn cha_cha20_poly1305_key_template() -> KeyTemplate {
KeyTemplate {
value: vec![],
type_url: crate::CHA_CHA20_POLY1305_TYPE_URL.to_string(),
output_prefix_type: OutputPrefixType::Tink as i32,
}
}
pub fn x_cha_cha20_poly1305_key_template() -> KeyTemplate {
KeyTemplate {
value: vec![],
type_url: crate::X_CHA_CHA20_POLY1305_TYPE_URL.to_string(),
output_prefix_type: OutputPrefixType::Tink as i32,
}
}
pub fn kms_envelope_aead_key_template(uri: &str, dek_t: KeyTemplate) -> KeyTemplate {
let f = tink_proto::KmsEnvelopeAeadKeyFormat {
kek_uri: uri.to_string(),
dek_template: Some(dek_t),
};
let mut serialized_format = Vec::new();
f.encode(&mut serialized_format).unwrap();
KeyTemplate {
value: serialized_format,
type_url: crate::KMS_ENVELOPE_AEAD_TYPE_URL.to_string(),
output_prefix_type: OutputPrefixType::Tink as i32,
}
}
fn create_aes_gcm_key_template(key_size: u32, output_prefix_type: OutputPrefixType) -> KeyTemplate {
let format = tink_proto::AesGcmKeyFormat {
version: crate::AES_GCM_KEY_VERSION,
key_size,
};
let mut serialized_format = Vec::new();
format.encode(&mut serialized_format).unwrap();
KeyTemplate {
type_url: crate::AES_GCM_TYPE_URL.to_string(),
value: serialized_format,
output_prefix_type: output_prefix_type as i32,
}
}
fn create_aes_gcm_siv_key_template(
key_size: u32,
output_prefix_type: OutputPrefixType,
) -> KeyTemplate {
let format = tink_proto::AesGcmSivKeyFormat {
version: crate::AES_GCM_SIV_KEY_VERSION,
key_size,
};
let mut serialized_format = Vec::new();
format.encode(&mut serialized_format).unwrap();
KeyTemplate {
type_url: crate::AES_GCM_SIV_TYPE_URL.to_string(),
value: serialized_format,
output_prefix_type: output_prefix_type as i32,
}
}
fn create_aes_ctr_hmac_aead_key_template(
aes_key_size: u32,
iv_size: u32,
hmac_key_size: u32,
tag_size: u32,
hash: HashType,
) -> KeyTemplate {
let format = tink_proto::AesCtrHmacAeadKeyFormat {
aes_ctr_key_format: Some(tink_proto::AesCtrKeyFormat {
params: Some(tink_proto::AesCtrParams { iv_size }),
key_size: aes_key_size,
}),
hmac_key_format: Some(tink_proto::HmacKeyFormat {
version: crate::AES_CTR_HMAC_AEAD_KEY_VERSION,
params: Some(tink_proto::HmacParams {
hash: hash as i32,
tag_size,
}),
key_size: hmac_key_size,
}),
};
let mut serialized_format = Vec::new();
format.encode(&mut serialized_format).unwrap();
KeyTemplate {
value: serialized_format,
type_url: crate::AES_CTR_HMAC_AEAD_TYPE_URL.to_string(),
output_prefix_type: OutputPrefixType::Tink as i32,
}
}