libcoap 4.3.5-develop-ea01661
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-2025 Olaf Bergmann <bergmann@tzi.org>
8 * Copyright (C) 2021-2025 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
55 const coap_address_t *local_if,
56 const coap_address_t *server,
57 coap_proto_t proto,
58 coap_oscore_conf_t *oscore_conf);
59
80 const coap_address_t *local_if,
81 const coap_address_t *server,
82 coap_proto_t proto,
83 coap_dtls_cpsk_t *psk_data,
84 coap_oscore_conf_t *oscore_conf);
85
106 const coap_address_t *local_if,
107 const coap_address_t *server,
108 coap_proto_t proto,
109 coap_dtls_pki_t *pki_data,
110 coap_oscore_conf_t *oscore_conf);
111
122 coap_oscore_conf_t *oscore_conf);
123
134typedef int (*coap_oscore_save_seq_num_t)(uint64_t sender_seq_num, void *param);
135
153 coap_oscore_save_seq_num_t save_seq_num_func,
154 void *save_seq_num_func_param,
155 uint64_t start_seq_num);
156
165
177 coap_bin_const_t *recipient_id);
178
191 coap_bin_const_t *recipient_id);
192
195#ifdef __cplusplus
196}
197#endif
198
199#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 ...
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 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_proto_t
CoAP protocol types.
Definition coap_pdu.h:317
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