libcoap 4.3.5-develop-146e0bb
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 "oscore_cose.h"
51#include "oscore_context.h"
52
53#ifdef __cplusplus
54extern "C" {
55#endif
56
63/* Estimate your header size, especially when using Proxy-Uri. */
64#define COAP_MAX_HEADER_SIZE 70
65
66/* OSCORE error messages (to be moved elsewhere */
67#define OSCORE_DECRYPTION_ERROR 100
68#define PACKET_SERIALIZATION_ERROR 102
69
70/* oscore_cs_params
71 * returns cbor array [[param_type], [paramtype, param]]
72 */
73uint8_t *oscore_cs_params(int8_t param, int8_t param_type, size_t *len);
74
75/* oscore_cs_key_params
76 * returns cbor array [paramtype, param]
77 */
78uint8_t *oscore_cs_key_params(cose_curve_t param, int8_t param_type, size_t *len);
79
80/*
81 * oscore_encode_option_value
82 */
83size_t oscore_encode_option_value(uint8_t *option_buffer,
84 size_t option_buf_len,
85 cose_encrypt0_t *cose,
86 uint8_t group,
87 uint8_t appendix_b_2);
88
89/*
90 * Decodes the OSCORE option value and places decoded values into the provided
91 * cose structure */
92int oscore_decode_option_value(const uint8_t *option_value,
93 size_t option_len,
94 cose_encrypt0_t *cose);
95
96/* Creates AAD, creates External AAD and serializes it into the complete AAD
97 * structure. Returns serialized size. */
98size_t oscore_prepare_aad(const uint8_t *external_aad_buffer,
99 size_t external_aad_len,
100 uint8_t *aad_buffer,
101 size_t aad_size);
102
104 cose_encrypt0_t *cose,
105 const uint8_t *oscore_option,
106 size_t oscore_option_len,
107 coap_bin_const_t *sender_public_key,
108 uint8_t *external_aad_ptr,
109 size_t external_aad_size);
110
111/* Creates Nonce */
113 oscore_ctx_t *ctx,
114 uint8_t *buffer,
115 uint8_t size);
116
117/*Return 1 if OK, Error code otherwise */
119 cose_encrypt0_t *cose);
120
121/* Return 0 if SEQ MAX, return 1 if OK */
123
124/* Restore the sequence number and replay-window to the previous state. This is
125 * to be used when decryption fail. */
127
130#ifdef __cplusplus
131}
132#endif
133
134#endif /* _OSCORE_H */
cose_curve_t
Definition oscore_cose.h:62
size_t oscore_prepare_aad(const uint8_t *external_aad_buffer, size_t external_aad_len, uint8_t *aad_buffer, size_t aad_size)
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)
uint8_t oscore_validate_sender_seq(oscore_recipient_ctx_t *ctx, cose_encrypt0_t *cose)
int oscore_decode_option_value(const uint8_t *option_value, size_t option_len, cose_encrypt0_t *cose)
uint8_t oscore_increment_sender_seq(oscore_ctx_t *ctx)
void oscore_roll_back_seq(oscore_recipient_ctx_t *ctx)
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)
uint8_t * oscore_cs_key_params(cose_curve_t param, int8_t param_type, size_t *len)
void oscore_generate_nonce(cose_encrypt0_t *ptr, oscore_ctx_t *ctx, uint8_t *buffer, uint8_t size)
uint8_t * oscore_cs_params(int8_t param, int8_t param_type, size_t *len)
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:65