libcoap 4.3.5-develop-ea01661
Loading...
Searching...
No Matches
oscore.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
47#ifndef _OSCORE_H
48#define _OSCORE_H
49
50#include <coap3/coap_internal.h>
51#include "oscore_cose.h"
52#include "oscore_context.h"
53
54#ifdef __cplusplus
55extern "C" {
56#endif
57
64/* Estimate your header size, especially when using Proxy-Uri. */
65#define COAP_MAX_HEADER_SIZE 70
66
67/* OSCORE error messages (to be moved elsewhere */
68#define OSCORE_DECRYPTION_ERROR 100
69#define PACKET_SERIALIZATION_ERROR 102
70
71/* oscore_cs_params
72 * returns cbor array [[param_type], [paramtype, param]]
73 */
74uint8_t *oscore_cs_params(int8_t param, int8_t param_type, size_t *len);
75
76/* oscore_cs_key_params
77 * returns cbor array [paramtype, param]
78 */
79uint8_t *oscore_cs_key_params(cose_curve_t param, int8_t param_type, size_t *len);
80
81/*
82 * oscore_encode_option_value
83 */
84size_t oscore_encode_option_value(uint8_t *option_buffer,
85 size_t option_buf_len,
86 cose_encrypt0_t *cose,
87 uint8_t group,
88 uint8_t appendix_b_2);
89
90/*
91 * Decodes the OSCORE option value and places decoded values into the provided
92 * cose structure */
93int oscore_decode_option_value(const uint8_t *option_value,
94 size_t option_len,
95 cose_encrypt0_t *cose);
96
97/* Creates AAD, creates External AAD and serializes it into the complete AAD
98 * structure. Returns serialized size. */
99size_t oscore_prepare_aad(const uint8_t *external_aad_buffer,
100 size_t external_aad_len,
101 uint8_t *aad_buffer,
102 size_t aad_size);
103
105 cose_encrypt0_t *cose,
106 const uint8_t *oscore_option,
107 size_t oscore_option_len,
108 coap_bin_const_t *sender_public_key,
109 uint8_t *external_aad_ptr,
110 size_t external_aad_size);
111
112/* Creates Nonce */
114 oscore_ctx_t *ctx,
115 uint8_t *buffer,
116 uint8_t size);
117
118/*Return 1 if OK, Error code otherwise */
120 cose_encrypt0_t *cose);
121
122/* Return 0 if SEQ MAX, return 1 if OK */
124
125/* Restore the sequence number and replay-window to the previous state. This is
126 * to be used when decryption fail. */
128
131#ifdef __cplusplus
132}
133#endif
134
135#endif /* _OSCORE_H */
Pulls together all the internal only header files.
cose_curve_t
Definition oscore_cose.h:64
size_t oscore_prepare_aad(const uint8_t *external_aad_buffer, size_t external_aad_len, uint8_t *aad_buffer, size_t aad_size)
Definition oscore.c:312
size_t oscore_encode_option_value(uint8_t *option_buffer, size_t option_buf_len, cose_encrypt0_t *cose, uint8_t group, uint8_t appendix_b_2)
Definition oscore.c:170
uint8_t oscore_validate_sender_seq(oscore_recipient_ctx_t *ctx, cose_encrypt0_t *cose)
Definition oscore.c:366
int oscore_decode_option_value(const uint8_t *option_value, size_t option_len, cose_encrypt0_t *cose)
Definition oscore.c:246
uint8_t oscore_increment_sender_seq(oscore_ctx_t *ctx)
Definition oscore.c:430
void oscore_roll_back_seq(oscore_recipient_ctx_t *ctx)
Definition oscore.c:447
size_t oscore_prepare_e_aad(oscore_ctx_t *ctx, cose_encrypt0_t *cose, const uint8_t *oscore_option, size_t oscore_option_len, coap_bin_const_t *sender_public_key, uint8_t *external_aad_ptr, size_t external_aad_size)
Definition oscore.c:119
uint8_t * oscore_cs_key_params(cose_curve_t param, int8_t param_type, size_t *len)
Definition oscore.c:74
void oscore_generate_nonce(cose_encrypt0_t *ptr, oscore_ctx_t *ctx, uint8_t *buffer, uint8_t size)
Definition oscore.c:343
uint8_t * oscore_cs_params(int8_t param, int8_t param_type, size_t *len)
Definition oscore.c:53
An implementation of the Object Security for Constrained RESTful Enviornments (RFC 8613).
An implementation of the CBOR Object Signing and Encryption (RFC).
CoAP binary data definition with const data.
Definition coap_str.h:67