t_cose
Loading...
Searching...
No Matches
t_cose_common.h
Go to the documentation of this file.
1/*
2 * t_cose_common.h
3 *
4 * Copyright 2019-2024, Laurence Lundblade
5 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 *
8 * See BSD-3-Clause license in README.md
9 */
10
11
12#ifndef __T_COSE_COMMON_H__
13#define __T_COSE_COMMON_H__
14
15#include <stdint.h>
16#include <stdbool.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22
23
67#define T_COSE_VERSION_MAJOR 1
68#define T_COSE_VERSION_MINOR 1
69#define T_COSE_VERSION_PATCH 2
70
71
83#define T_COSE_ALGORITHM_ES256 -7
84
96#define T_COSE_ALGORITHM_EDDSA -8
97
109#define T_COSE_ALGORITHM_ES384 -35
110
122#define T_COSE_ALGORITHM_ES512 -36
123
132#define T_COSE_ALGORITHM_PS256 -37
133
142#define T_COSE_ALGORITHM_PS384 -38
143
152#define T_COSE_ALGORITHM_PS512 -39
153
154
155
156
174
175
191 union {
194 void *key_ptr;
196 uint64_t key_handle;
197 } k;
198};
199
200
202/*
203 * This has to be definied differently in C than C++ because there is
204 * no common construct for a literal structure.
205 *
206 * In C compound literals are used.
207 *
208 * In C++ list initalization is used. This only works
209 * in C++11 and later.
210 *
211 * Note that some popular C++ compilers can handle compound
212 * literals with on-by-default extensions, however
213 * this code aims for full correctness with strict
214 * compilers so they are not used.
215 */
216#ifdef __cplusplus
217#define T_COSE_NULL_KEY {T_COSE_CRYPTO_LIB_UNIDENTIFIED, {0}}
218#else
219#define T_COSE_NULL_KEY \
220 ((struct t_cose_key){T_COSE_CRYPTO_LIB_UNIDENTIFIED, {0}})
221#endif
222
223
224/* Private value. Intentionally not documented for Doxygen. This is
225 * the size allocated for the encoded protected header parameters. It
226 * needs to be big enough for encode_protected_parameters() to
227 * succeed. It currently sized for one parameter with an algorithm ID
228 * up to 32 bits long -- one byte for the wrapping map, one byte for
229 * the label, 5 bytes for the ID. If this is made accidentally too
230 * small, QCBOR will only return an error, and not overrun any
231 * buffers.
232 *
233 * 17 extra bytes are added, rounding it up to 24 total, in case some
234 * other protected header parameter is to be added and so the test
235 * using T_COSE_TEST_CRIT_PARAMETER_EXIST can work.
236 */
237#define T_COSE_SIGN1_MAX_SIZE_PROTECTED_PARAMETERS (1+1+5+17)
238
239
243/*
244 * Do not reorder these. It is OK to add new ones at the end.
245 *
246 * Explicit values are included because some tools like debuggers show
247 * only the value, not the symbol, and it is hard to count up through
248 * 35 lines to figure out the actual value.
249 */
253
256
261
265
268
271
275
281
286
292
296
300
305
308
311
315
318
321
325
329
333
338
342
348
351
357
361
366
371
375
380
385
388
394
399
402
406
411
414};
415
416
417
418
433#define T_COSE_PARAMETER_LIST_MAX 10
434
435
436
441#define T_COSE_EMPTY_UINT_CONTENT_TYPE UINT16_MAX+1
442
457bool
458t_cose_is_algorithm_supported(int32_t cose_algorithm_id);
459
460
461#ifdef __cplusplus
462}
463#endif
464
465
466#endif /* __T_COSE_COMMON_H__ */
Definition t_cose_common.h:186
uint64_t key_handle
Definition t_cose_common.h:196
enum t_cose_crypto_lib_t crypto_lib
Definition t_cose_common.h:190
void * key_ptr
Definition t_cose_common.h:194
t_cose_crypto_lib_t
Definition t_cose_common.h:162
@ T_COSE_CRYPTO_LIB_PSA
Definition t_cose_common.h:172
@ T_COSE_CRYPTO_LIB_OPENSSL
Definition t_cose_common.h:169
@ T_COSE_CRYPTO_LIB_UNIDENTIFIED
Definition t_cose_common.h:166
t_cose_err_t
Definition t_cose_common.h:250
@ T_COSE_ERR_UNSUPPORTED_SIGNING_ALG
Definition t_cose_common.h:255
@ T_COSE_ERR_INSUFFICIENT_MEMORY
Definition t_cose_common.h:314
@ T_COSE_ERR_CRIT_PARAMETER
Definition t_cose_common.h:401
@ T_COSE_ERR_WRONG_TYPE_OF_KEY
Definition t_cose_common.h:328
@ T_COSE_ERR_SIG_BUFFER_SIZE
Definition t_cose_common.h:274
@ T_COSE_ERR_NO_KID
Definition t_cose_common.h:299
@ T_COSE_ERR_UNSUPPORTED_HASH
Definition t_cose_common.h:264
@ T_COSE_ERR_INCORRECT_KEY_FOR_LIB
Definition t_cose_common.h:370
@ T_COSE_ERR_HASH_GENERAL_FAIL
Definition t_cose_common.h:267
@ T_COSE_ERR_CBOR_NOT_WELL_FORMED
Definition t_cose_common.h:285
@ T_COSE_ERR_SIGN1_FORMAT
Definition t_cose_common.h:280
@ T_COSE_ERR_SHORT_CIRCUIT_SIG
Definition t_cose_common.h:337
@ T_COSE_ERR_NEED_AUXILIARY_BUFFER
Definition t_cose_common.h:410
@ T_COSE_ERR_CBOR_FORMATTING
Definition t_cose_common.h:347
@ T_COSE_ERR_SIG_VERIFY
Definition t_cose_common.h:304
@ T_COSE_ERR_BAD_SHORT_CIRCUIT_KID
Definition t_cose_common.h:307
@ T_COSE_ERR_TOO_SMALL
Definition t_cose_common.h:350
@ T_COSE_ERR_BAD_CONTENT_TYPE
Definition t_cose_common.h:379
@ T_COSE_ERR_NON_INTEGER_ALG_ID
Definition t_cose_common.h:374
@ T_COSE_ERR_TOO_MANY_TAGS
Definition t_cose_common.h:405
@ T_COSE_ERR_INCORRECTLY_TAGGED
Definition t_cose_common.h:384
@ T_COSE_ERR_TAMPERING_DETECTED
Definition t_cose_common.h:320
@ T_COSE_ERR_PARAMETER_NOT_PROTECTED
Definition t_cose_common.h:398
@ T_COSE_ERR_SIG_STRUCT
Definition t_cose_common.h:332
@ T_COSE_ERR_DUPLICATE_PARAMETER
Definition t_cose_common.h:393
@ T_COSE_ERR_UNKNOWN_CRITICAL_PARAMETER
Definition t_cose_common.h:360
@ T_COSE_ERR_HASH_BUFFER_SIZE
Definition t_cose_common.h:270
@ T_COSE_ERR_TOO_MANY_PARAMETERS
Definition t_cose_common.h:356
@ T_COSE_ERR_UNKNOWN_KEY
Definition t_cose_common.h:324
@ T_COSE_ERR_SHORT_CIRCUIT_SIG_DISABLED
Definition t_cose_common.h:365
@ T_COSE_ERR_PARAMETER_CBOR
Definition t_cose_common.h:291
@ T_COSE_ERR_INVALID_ARGUMENT
Definition t_cose_common.h:310
@ T_COSE_ERR_FAIL
Definition t_cose_common.h:317
@ T_COSE_ERR_SIG_FAIL
Definition t_cose_common.h:341
@ T_COSE_ERR_MAKING_PROTECTED
Definition t_cose_common.h:260
@ T_COSE_SUCCESS
Definition t_cose_common.h:252
@ T_COSE_ERR_NO_ALG_ID
Definition t_cose_common.h:295
@ T_COSE_ERR_AUXILIARY_BUFFER_SIZE
Definition t_cose_common.h:413
@ T_COSE_ERR_EMPTY_KEY
Definition t_cose_common.h:387
bool t_cose_is_algorithm_supported(int32_t cose_algorithm_id)
Check whether an algorithm is supported.