This repository has been archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
hybrid_key_templates.h
235 lines (212 loc) · 9.13 KB
/
hybrid_key_templates.h
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
// Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef TINK_HYBRID_HYBRID_KEY_TEMPLATES_H_
#define TINK_HYBRID_HYBRID_KEY_TEMPLATES_H_
#include "proto/tink.pb.h"
namespace crypto {
namespace tink {
///////////////////////////////////////////////////////////////////////////////
// Pre-generated KeyTemplate for hybrid key types. One can use these templates
// to generate a new KeysetHandle object with fresh keys.
// To generate a new keyset that contains a single EciesAeadHkdfPrivateKey,
// one can do:
//
// auto status = HybridConfig::Register();
// if (!status.ok()) { /* fail with error */ }
// auto handle_result = KeysetHandle::GenerateNew(
// HybridKeyTemplates::EciesP256HkdfHmacSha256Aes128Gcm());
// if (!handle_result.ok()) { /* fail with error */ }
// auto keyset_handle = std::move(handle_result.value());
class HybridKeyTemplates {
public:
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-GCM
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Uncompressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256HkdfHmacSha256Aes128Gcm();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-GCM
// - KDF: HKDF-HMAC-SHA512 with an empty salt
// - EC Point Format: Uncompressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256HkdfHmacSha512Aes128Gcm();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-GCM
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: RAW
static const google::crypto::tink::KeyTemplate&
EciesP256HkdfHmacSha256Aes128GcmCompressedWithoutPrefix();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-CTR-HMAC-SHA256 with the following parameters:
// * AES key size: 16 bytes
// * AES CTR IV size: 16 bytes
// * HMAC key size: 32 bytes
// * HMAC tag size: 16 bytes
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Uncompressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256HkdfHmacSha256Aes128CtrHmacSha256();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-CTR-HMAC-SHA256 with the following parameters:
// * AES key size: 16 bytes
// * AES CTR IV size: 16 bytes
// * HMAC key size: 32 bytes
// * HMAC tag size: 16 bytes
// - KDF: HKDF-HMAC-SHA512 with an empty salt
// - EC Point Format: Uncompressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256HkdfHmacSha512Aes128CtrHmacSha256();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-GCM
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256CompressedHkdfHmacSha256Aes128Gcm();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over NIST P-256
// - DEM: AES128-CTR-HMAC-SHA256 with the following parameters:
// * AES key size: 16 bytes
// * AES CTR IV size: 16 bytes
// * HMAC key size: 32 bytes
// * HMAC tag size: 16 bytes
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesP256CompressedHkdfHmacSha256Aes128CtrHmacSha256();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over curve 25519
// - DEM: AES128-GCM
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesX25519HkdfHmacSha256Aes128Gcm();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over curve 25519
// - DEM: AES256-GCM
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesX25519HkdfHmacSha256Aes256Gcm();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over curve 25519
// - DEM: AES128-CTR-HMAC-SHA256 with the following parameters:
// * AES key size: 16 bytes
// * AES CTR IV size: 16 bytes
// * HMAC key size: 32 bytes
// * HMAC tag size: 16 bytes
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesX25519HkdfHmacSha256Aes128CtrHmacSha256();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over curve 25519
// - DEM: XChaCha20-Poly1305 with the following parameters:
// * XChaCha20 key size: 32 bytes
// * IV size: 24 bytes
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesX25519HkdfHmacSha256XChaCha20Poly1305();
// Returns a KeyTemplate that generates new instances of
// EciesAeadHkdfPrivateKey with the following parameters:
// - KEM: ECDH over curve 25519
// - DEM: AES-SIV (Deterministic Aead)
// - KDF: HKDF-HMAC-SHA256 with an empty salt
// - EC Point Format: Compressed
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
EciesX25519HkdfHmacSha256DeterministicAesSiv();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: AES-128-GCM
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256Aes128Gcm();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: AES-128-GCM
// - OutputPrefixType: RAW
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256Aes128GcmRaw();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: AES-256-GCM
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256Aes256Gcm();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: AES-256-GCM
// - OutputPrefixType: RAW
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256Aes256GcmRaw();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: ChaCha20-Poly1305
// - OutputPrefixType: TINK
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256ChaCha20Poly1305();
// Returns a KeyTemplate that generates new instances of
// HpkePrivateKey with the following parameters:
// - KEM: ECDH over curve 25519 plus HKDF-SHA256
// - KDF: HKDF-SHA256
// - AEAD: ChaCha20-Poly1305
// - OutputPrefixType: RAW
static const google::crypto::tink::KeyTemplate&
HpkeX25519HkdfSha256ChaCha20Poly1305Raw();
};
} // namespace tink
} // namespace crypto
#endif // TINK_HYBRID_HYBRID_KEY_TEMPLATES_H_