libcoap 4.3.5b
Loading...
Searching...
No Matches
coap_asn1_internal.h
Go to the documentation of this file.
1/*
2 * coap_asn1_internal.h -- ASN.1 functions for libcoap
3 *
4 * Copyright (C) 2020-2025 Jon Shallow <supjps-libcoap@jpshallow.com>
5 *
6 * SPDX-License-Identifier: BSD-2-Clause
7 *
8 * This file is part of the CoAP library libcoap. Please see README for terms
9 * of use.
10 */
11
16
17#ifndef COAP_ASN1_INTERNAL_H_
18#define COAP_ASN1_INTERNAL_H_
19
20#include "coap_internal.h"
21
28
37
48typedef int (*asn1_validate)(const uint8_t *data, size_t size);
49
61size_t asn1_len(const uint8_t **ptr, size_t *plen);
62
76coap_asn1_tag_t asn1_tag_c(const uint8_t **ptr, size_t *plen, int *constructed, int *cls);
77
91coap_binary_t *get_asn1_tag(coap_asn1_tag_t ltag, const uint8_t *ptr,
92 size_t tlen, asn1_validate validate);
93
105coap_binary_t *get_asn1_spki(const uint8_t *data, size_t size);
106
108
109#endif /* COAP_ASN1_INTERNAL_H_ */
Pulls together all the internal only header files.
size_t asn1_len(const uint8_t **ptr, size_t *plen)
Get the asn1 length from the current ptr.
Definition coap_asn1.c:19
coap_binary_t * get_asn1_tag(coap_asn1_tag_t ltag, const uint8_t *ptr, size_t tlen, asn1_validate validate)
Get the asn1 tag and data from the current ptr.
Definition coap_asn1.c:88
coap_asn1_tag_t
coap_binary_t * get_asn1_spki(const uint8_t *data, size_t size)
Abstract SPKI public key from the ASN1.
Definition coap_asn1.c:153
int(* asn1_validate)(const uint8_t *data, size_t size)
Callback to validate the asn1 tag and data.
coap_asn1_tag_t asn1_tag_c(const uint8_t **ptr, size_t *plen, int *constructed, int *cls)
Get the asn1 tag from the current ptr.
Definition coap_asn1.c:49
@ COAP_ASN1_NONE
@ COAP_ASN1_OCTETSTRING
@ COAP_ASN1_INTEGER
@ COAP_ASN1_BITSTRING
@ COAP_ASN1_FAIL
@ COAP_ASN1_IDENTIFIER
CoAP binary data definition.
Definition coap_str.h:56