libcoap 4.3.5-develop-ea01661
Loading...
Searching...
No Matches
oscore_cose.h
Go to the documentation of this file.
1/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
3/*
4 * Copyright (c) 2018, SICS, RISE AB
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the Institute nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 */
32
46#ifndef _OSCORE_COSE_H
47#define _OSCORE_COSE_H
48
49#include <stdint.h>
50
51#ifdef __cplusplus
52extern "C" {
53#endif
54
62/* cose curves */
63
64typedef enum {
65 COSE_CURVE_P_256 = 1, /* NIST P-256 known as secp256r1 */
66 COSE_CURVE_X25519 = 4, /* used with ECDH only */
67 COSE_CURVE_X448 = 5, /* used with ECDH only */
68 COSE_CURVE_ED25519 = 6, /* used with EdDSA only */
69 COSE_CURVE_ED448 = 7, /* used with EdDSA only */
70 COSE_CURVE_SECP256K1 = 8, /* SECG secp256k1 curve */
72
80
81#define COSE_ALGORITHM_ED25519_SIG_LEN 64
82#define COSE_ALGORITHM_ED25519_PRIV_KEY_LEN 32
83#define COSE_ALGORITHM_ED25519_PUB_KEY_LEN 32
84
85#define COSE_ALGORITHM_AES_CCM_64_64_128_KEY_LEN 16
86#define COSE_ALGORITHM_AES_CCM_64_64_128_NONCE_LEN 7
87#define COSE_ALGORITHM_AES_CCM_64_64_128_TAG_LEN 8
88
89#define COSE_ALGORITHM_AES_CCM_16_64_128_KEY_LEN 16
90#define COSE_ALGORITHM_AES_CCM_16_64_128_NONCE_LEN 13
91#define COSE_ALGORITHM_AES_CCM_16_64_128_TAG_LEN 8
92
93#define COSE_ALGORITHM_AES_CCM_64_128_128_KEY_LEN 16
94#define COSE_ALGORITHM_AES_CCM_64_128_128_NONCE_LEN 7
95#define COSE_ALGORITHM_AES_CCM_64_128_128_TAG_LEN 16
96
97#define COSE_ALGORITHM_AES_CCM_16_128_128_KEY_LEN 16
98#define COSE_ALGORITHM_AES_CCM_16_128_128_NONCE_LEN 13
99#define COSE_ALGORITHM_AES_CCM_16_128_128_TAG_LEN 16
100
101#define COSE_ALGORITHM_ES256_PRIV_KEY_LEN 24
102#define COSE_ALGORITHM_ES256_PUB_KEY_LEN 32
103#define COSE_ALGORITHM_ES256_SIGNATURE_LEN 64
104#define COSE_ALGORITHM_ES256_HASH_LEN 32
105
106#define COSE_ALGORITHM_ES384_PRIV_KEY_LEN 24
107#define COSE_ALGORITHM_ES384_PUB_KEY_LEN 32
108#define COSE_ALGORITHM_ES384_SIGNATURE_LEN 64
109#define COSE_ALGORITHM_ES384_HASH_LEN 48
110
111#define COSE_ALGORITHM_ES512_PRIV_KEY_LEN 24
112#define COSE_ALGORITHM_ES512_PUB_KEY_LEN 32
113#define COSE_ALGORITHM_ES512_SIGNATURE_LEN 64
114#define COSE_ALGORITHM_ES512_HASH_LEN 64
115
116#define COSE_ALGORITHM_ECDH_PRIV_KEY_LEN 32
117#define COSE_ALGORITHM_ECDH_PUB_KEY_LEN 32
118
119#define COSE_ALGORITHM_SHA_512_LEN 64
120#define COSE_ALGORITHM_SHA_512_256_LEN 32
121#define COSE_ALGORITHM_SHA_256_256_LEN 32
122#define COSE_ALGORITHM_SHA_256_64_LEN 8
123
124#define COSE_ALGORITHM_HMAC256_64_HASH_LEN 16
125#define COSE_ALGORITHM_HMAC256_256_HASH_LEN 32
126#define COSE_ALGORITHM_HMAC384_384_HASH_LEN 48
127#define COSE_ALGORITHM_HMAC512_512_HASH_LEN 64
128
129/* cose algorithms */
159
160/* cose HMAC specific algorithms */
167
168/* cose HKDF specific algorithms */
173
174const char *cose_get_curve_name(cose_curve_t id, char *buffer, size_t buflen);
175cose_curve_t cose_get_curve_id(const char *name);
176
177const char *cose_get_alg_name(cose_alg_t id, char *buffer, size_t buflen);
178cose_alg_t cose_get_alg_id(const char *name);
179
180const char *cose_get_hkdf_alg_name(cose_hkdf_alg_t id, char *buffer,
181 size_t buflen);
182
184 cose_hmac_alg_t *hmac_alg);
185
186/* parameter value functions */
187
188/* return tag length belonging to cose algorithm */
189size_t cose_tag_len(cose_alg_t cose_alg);
190
191/* return hash length belonging to cose algorithm */
192size_t cose_hash_len(cose_alg_t cose_alg);
193
194/* return nonce length belonging to cose algorithm */
195size_t cose_nonce_len(cose_alg_t cose_alg);
196
197/* return key length belonging to cose algorithm */
198size_t cose_key_len(cose_alg_t cose_alg);
199
200/* COSE Encrypt0 Struct */
216
217/* Return length */
218size_t cose_encrypt0_encode(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size);
219
220/*Return status */
221int cose_encrypt0_decode(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size);
222
223/* Initiate a new COSE Encrypt0 object. */
225
226void cose_encrypt0_set_alg(cose_encrypt0_t *ptr, uint8_t alg);
227
228void cose_encrypt0_set_plaintext(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size);
229
231 uint8_t *buffer,
232 size_t size);
233
234/* Return length */
236
238 coap_bin_const_t *partial_iv);
239
241
243
244/* Return length */
245size_t cose_encrypt0_get_key_id(cose_encrypt0_t *ptr, const uint8_t **buffer);
246
248 coap_bin_const_t *external_aad);
249
251
252/* Return length */
254 const uint8_t **buffer);
255
257 coap_bin_const_t *kid_context);
258
259/* Returns 1 if successfull, 0 if key is of incorrect length. */
261
263
265 uint8_t *ciphertext_buffer,
266 size_t ciphertext_len);
267
269 uint8_t *plaintext_buffer,
270 size_t plaintext_len);
271
274#ifdef __cplusplus
275}
276#endif
277
278#endif /* _OSCORE_COSE_H */
void cose_encrypt0_set_plaintext(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size)
int cose_encrypt0_get_plaintext(cose_encrypt0_t *ptr, uint8_t **buffer)
const char * cose_get_hkdf_alg_name(cose_hkdf_alg_t id, char *buffer, size_t buflen)
int cose_encrypt0_set_key(cose_encrypt0_t *ptr, coap_bin_const_t *key)
size_t cose_nonce_len(cose_alg_t cose_alg)
cose_alg_t cose_get_alg_id(const char *name)
void cose_encrypt0_set_kid_context(cose_encrypt0_t *ptr, coap_bin_const_t *kid_context)
cose_curve_t cose_get_curve_id(const char *name)
Definition oscore_cose.c:76
size_t cose_key_len(cose_alg_t cose_alg)
size_t cose_encrypt0_get_key_id(cose_encrypt0_t *ptr, const uint8_t **buffer)
const char * cose_get_alg_name(cose_alg_t id, char *buffer, size_t buflen)
int cose_get_hmac_alg_for_hkdf(cose_hkdf_alg_t hkdf_alg, cose_hmac_alg_t *hmac_alg)
coap_bin_const_t cose_encrypt0_get_partial_iv(cose_encrypt0_t *ptr)
cose_hkdf_alg_t
size_t cose_encrypt0_get_kid_context(cose_encrypt0_t *ptr, const uint8_t **buffer)
void cose_encrypt0_set_ciphertext(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size)
size_t cose_hash_len(cose_alg_t cose_alg)
int cose_encrypt0_decrypt(cose_encrypt0_t *ptr, uint8_t *plaintext_buffer, size_t plaintext_len)
size_t cose_tag_len(cose_alg_t cose_alg)
void cose_encrypt0_set_aad(cose_encrypt0_t *ptr, coap_bin_const_t *aad)
cose_hmac_alg_t
int cose_encrypt0_decode(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size)
cose_curve_t
Definition oscore_cose.h:64
int cose_encrypt0_encrypt(cose_encrypt0_t *ptr, uint8_t *ciphertext_buffer, size_t ciphertext_len)
void cose_encrypt0_set_partial_iv(cose_encrypt0_t *ptr, coap_bin_const_t *partial_iv)
cose_alg_t
const char * cose_get_curve_name(cose_curve_t id, char *buffer, size_t buflen)
Definition oscore_cose.c:64
cose_key_type_t
Definition oscore_cose.h:73
size_t cose_encrypt0_encode(cose_encrypt0_t *ptr, uint8_t *buffer, size_t size)
void cose_encrypt0_set_external_aad(cose_encrypt0_t *ptr, coap_bin_const_t *external_aad)
void cose_encrypt0_init(cose_encrypt0_t *ptr)
void cose_encrypt0_set_alg(cose_encrypt0_t *ptr, uint8_t alg)
void cose_encrypt0_set_key_id(cose_encrypt0_t *ptr, coap_bin_const_t *key_id)
void cose_encrypt0_set_nonce(cose_encrypt0_t *ptr, coap_bin_const_t *nonce)
@ COSE_HKDF_ALG_HKDF_SHA_256
@ COSE_HKDF_ALG_HKDF_SHA_512
@ COSE_HMAC_ALG_HMAC384_384
@ COSE_HMAC_ALG_HMAC256_256
@ COSE_HMAC_ALG_HMAC512_512
@ COSE_HMAC_ALG_HMAC256_64
@ COSE_CURVE_X25519
Definition oscore_cose.h:66
@ COSE_CURVE_ED448
Definition oscore_cose.h:69
@ COSE_CURVE_P_256
Definition oscore_cose.h:65
@ COSE_CURVE_SECP256K1
Definition oscore_cose.h:70
@ COSE_CURVE_ED25519
Definition oscore_cose.h:68
@ COSE_CURVE_X448
Definition oscore_cose.h:67
@ COSE_ALGORITHM_HMAC256_256
@ COSE_ALGORITHM_AES_CCM_16_128_256
@ COSE_ALGORITHM_ECDH_SS_HKDF_256
@ COSE_ALGORITHM_HMAC512_512
@ COSE_ALGORITHM_SHA_256_64
@ COSE_ALGORITHM_SHA_512_256
@ COSE_ALGORITHM_ES384
@ COSE_ALGORITHM_AES_CCM_64_64_128
@ COSE_ALGORITHM_CHACHA20_P1035
@ COSE_ALGORITHM_HKDF_SHA_512
@ COSE_ALGORITHM_AES_CCM_16_128_128
@ COSE_ALGORITHM_AES_CCM_64_128_256
@ COSE_ALGORITHM_SHA_256_256
@ COSE_ALGORITHM_SHA_1
@ COSE_ALGORITHM_EDDSA
@ COSE_ALGORITHM_HMAC256_64
@ COSE_ALGORITHM_ES256
@ COSE_ALGORITHM_AES_CCM_64_64_256
@ COSE_ALGORITHM_HKDF_SHA_256
@ COSE_ALGORITHM_AES_CCM_16_64_128
@ COSE_ALGORITHM_ES512
@ COSE_ALGORITHM_HMAC384_384
@ COSE_ALGORITHM_SHA_512
@ COSE_ALGORITHM_AES_CCM_64_128_128
@ COSE_ALGORITHM_AES_CCM_16_64_256
@ COSE_ALGORITHM_ES256K
@ COSE_ALGORITHM_SHA_384
@ COSE_KTY_SYMMETRIC
Definition oscore_cose.h:78
@ COSE_KTY_OKP
Definition oscore_cose.h:75
@ COSE_KTY_UNKNOWN
Definition oscore_cose.h:74
@ COSE_KTY_EC2
Definition oscore_cose.h:76
@ COSE_KTY_RSA
Definition oscore_cose.h:77
CoAP binary data definition with const data.
Definition coap_str.h:67
coap_bin_const_t aad
coap_bin_const_t key
coap_bin_const_t ciphertext
coap_bin_const_t plaintext
coap_bin_const_t partial_iv
coap_bin_const_t kid_context
coap_bin_const_t nonce
coap_bin_const_t external_aad
coap_bin_const_t key_id
coap_bin_const_t oscore_option
uint8_t partial_iv_data[8]
cose_alg_t alg