libcoap 4.3.5-develop-aa9b554
Loading...
Searching...
No Matches
coap_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 * coap_oscore.h -- Object Security for Constrained RESTful Environments
5 * (OSCORE) support for libcoap
6 *
7 * Copyright (C) 2019-2026 Olaf Bergmann <bergmann@tzi.org>
8 * Copyright (C) 2021-2026 Jon Shallow <supjps-libcoap@jpshallow.com>
9 *
10 * SPDX-License-Identifier: BSD-2-Clause
11 *
12 * This file is part of the CoAP library libcoap. Please see README for terms
13 * of use.
14 */
15
21#ifndef COAP_OSCORE_H_
22#define COAP_OSCORE_H_
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
57 const coap_address_t *local_if,
58 const coap_address_t *server,
59 coap_proto_t proto,
60 coap_oscore_conf_t *oscore_conf);
61
94 const coap_address_t *local_if,
95 const coap_address_t *server,
96 coap_proto_t proto,
97 coap_oscore_conf_t *oscore_conf,
98 void *app_data,
100 coap_str_const_t *ws_host);
101
124 const coap_address_t *local_if,
125 const coap_address_t *server,
126 coap_proto_t proto,
127 coap_dtls_cpsk_t *psk_data,
128 coap_oscore_conf_t *oscore_conf);
129
163 const coap_address_t *local_if,
164 const coap_address_t *server,
165 coap_proto_t proto,
166 coap_dtls_cpsk_t *psk_data,
167 coap_oscore_conf_t *oscore_conf,
168 void *app_data,
170 coap_str_const_t *ws_host);
171
194 const coap_address_t *local_if,
195 const coap_address_t *server,
196 coap_proto_t proto,
197 coap_dtls_pki_t *pki_data,
198 coap_oscore_conf_t *oscore_conf);
199
233 const coap_address_t *local_if,
234 const coap_address_t *server,
235 coap_proto_t proto,
236 coap_dtls_pki_t *pki_data,
237 coap_oscore_conf_t *oscore_conf,
238 void *app_data,
240 coap_str_const_t *ws_host);
251 coap_oscore_conf_t *oscore_conf);
252
263typedef int (*coap_oscore_save_seq_num_t)(uint64_t sender_seq_num, void *param);
264
282 coap_oscore_save_seq_num_t save_seq_num_func,
283 void *save_seq_num_func_param,
284 uint64_t start_seq_num);
285
294
306 coap_bin_const_t *recipient_id);
307
320 coap_bin_const_t *recipient_id);
321
324#ifdef __cplusplus
325}
326#endif
327
328#endif /* COAP_OSCORE_H */
#define COAP_API
coap_oscore_conf_t * coap_new_oscore_conf(coap_str_const_t conf_mem, coap_oscore_save_seq_num_t save_seq_num_func, void *save_seq_num_func_param, uint64_t start_seq_num)
Parse an OSCORE configuration (held in memory) and populate a OSCORE configuration structure.
COAP_API coap_session_t * coap_new_client_session_oscore_psk(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_cpsk_t *psk_data, coap_oscore_conf_t *oscore_conf)
Creates a new client session to the designated server with PSK credentials as well as protecting the ...
COAP_API coap_session_t * coap_new_client_session_oscore_psk3(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_cpsk_t *psk_data, coap_oscore_conf_t *oscore_conf, void *app_data, coap_app_data_free_callback_t callback, coap_str_const_t *ws_host)
Creates a new client session to the designated server, with PSK credentials protecting the data using...
int coap_delete_oscore_conf(coap_oscore_conf_t *oscore_conf)
Release all the information associated with the OSCORE configuration.
COAP_API coap_session_t * coap_new_client_session_oscore(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_oscore_conf_t *oscore_conf)
Creates a new client session to the designated server, protecting the data using OSCORE.
COAP_API int coap_context_oscore_server(coap_context_t *context, coap_oscore_conf_t *oscore_conf)
Set the context's default OSCORE configuration for a server.
COAP_API coap_session_t * coap_new_client_session_oscore_pki(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_pki_t *pki_data, coap_oscore_conf_t *oscore_conf)
Creates a new client session to the designated server with PKI credentials as well as protecting the ...
COAP_API coap_session_t * coap_new_client_session_oscore3(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_oscore_conf_t *oscore_conf, void *app_data, coap_app_data_free_callback_t callback, coap_str_const_t *ws_host)
Creates a new client session to the designated server, protecting the data using OSCORE,...
COAP_API int coap_new_oscore_recipient(coap_context_t *context, coap_bin_const_t *recipient_id)
Add in the specific Recipient ID into the OSCORE context (server only).
int(* coap_oscore_save_seq_num_t)(uint64_t sender_seq_num, void *param)
Definition of the function used to save the current Sender Sequence Number.
COAP_API int coap_delete_oscore_recipient(coap_context_t *context, coap_bin_const_t *recipient_id)
Release all the information associated for the specific Recipient ID (and hence and stop any further ...
COAP_API coap_session_t * coap_new_client_session_oscore_pki3(coap_context_t *ctx, const coap_address_t *local_if, const coap_address_t *server, coap_proto_t proto, coap_dtls_pki_t *pki_data, coap_oscore_conf_t *oscore_conf, void *app_data, coap_app_data_free_callback_t callback, coap_str_const_t *ws_host)
Creates a new client session to the designated server, with PKI credentials protecting the data using...
coap_proto_t
CoAP protocol types Note: coap_layers_coap[] needs updating if extended.
Definition coap_pdu.h:318
void(* coap_app_data_free_callback_t)(void *data)
Callback to free off the app data when the entry is being deleted / freed off.
Multi-purpose address abstraction.
CoAP binary data definition with const data.
Definition coap_str.h:67
The CoAP stack's global state is stored in a coap_context_t object.
The structure used for defining the Client PSK setup data to be used.
Definition coap_dtls.h:414
The structure used for defining the PKI setup data to be used.
Definition coap_dtls.h:316
The structure used to hold the OSCORE configuration information.
Abstraction of virtual session that can be attached to coap_context_t (client) or coap_endpoint_t (se...
CoAP string data definition with const data.
Definition coap_str.h:49