libcoap 4.3.1
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 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
17#ifndef COAP_ASN1_INTERNAL_H_
18#define COAP_ASN1_INTERNAL_H_
19
20#include "coap_internal.h"
21
29typedef enum {
36
47typedef int (*asn1_validate)(const uint8_t *data, size_t size);
48
58size_t asn1_len(const uint8_t **ptr);
59
71coap_asn1_tag_t asn1_tag_c(const uint8_t **ptr, int *constructed, int *class);
72
85coap_binary_t *get_asn1_tag(coap_asn1_tag_t ltag, const uint8_t *ptr,
86 size_t tlen, asn1_validate validate);
87
90#endif /* COAP_ASN1_INTERNAL_H_ */
Pulls together all the internal only header files.
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:68
coap_asn1_tag_t asn1_tag_c(const uint8_t **ptr, int *constructed, int *class)
Get the asn1 tag from the current ptr.
Definition: coap_asn1.c:40
size_t asn1_len(const uint8_t **ptr)
Get the asn1 length from the current ptr.
Definition: coap_asn1.c:19
coap_asn1_tag_t
int(* asn1_validate)(const uint8_t *data, size_t size)
Callback to validate the asn1 tag and data.
@ COAP_ASN1_NONE
@ COAP_ASN1_OCTETSTRING
@ COAP_ASN1_INTEGER
@ COAP_ASN1_BITSTRING
@ COAP_ASN1_IDENTIFIER
CoAP binary data definition.
Definition: str.h:56