OPTIGA Trust M  1.1.0
C++ library for Optiga Trust M Chip Security Controller
asn1write.h
Go to the documentation of this file.
1 
6 /*
7  * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
8  * SPDX-License-Identifier: Apache-2.0
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License"); you may
11  * not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  * This file is part of mbed TLS (https://tls.mbed.org)
23  */
24 #ifndef MBEDTLS_ASN1_WRITE_H
25 #define MBEDTLS_ASN1_WRITE_H
26 
27 #include "asn1.h"
28 
29 #define MBEDTLS_ASN1_CHK_ADD(g, f) \
30  do { \
31  if( ( ret = f ) < 0 ) \
32  return( ret ); \
33  else \
34  g += ret; \
35  } while( 0 )
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
53 int mbedtls_asn1_write_len( unsigned char **p, unsigned char *start,
54  size_t len );
67 int mbedtls_asn1_write_tag( unsigned char **p, unsigned char *start,
68  unsigned char tag );
69 
83 int mbedtls_asn1_write_raw_buffer( unsigned char **p, unsigned char *start,
84  const unsigned char *buf, size_t size );
85 
86 #if defined(MBEDTLS_BIGNUM_C)
87 
100 int mbedtls_asn1_write_mpi( unsigned char **p, unsigned char *start,
101  const mbedtls_mpi *X );
102 #endif /* MBEDTLS_BIGNUM_C */
103 
116 int mbedtls_asn1_write_null( unsigned char **p, unsigned char *start );
117 
132 int mbedtls_asn1_write_oid( unsigned char **p, unsigned char *start,
133  const char *oid, size_t oid_len );
134 
150 int mbedtls_asn1_write_algorithm_identifier( unsigned char **p,
151  unsigned char *start,
152  const char *oid, size_t oid_len,
153  size_t par_len );
154 
168 int mbedtls_asn1_write_bool( unsigned char **p, unsigned char *start,
169  int boolean );
170 
184 int mbedtls_asn1_write_int( unsigned char **p, unsigned char *start, int val );
185 
203 int mbedtls_asn1_write_tagged_string( unsigned char **p, unsigned char *start,
204  int tag, const char *text,
205  size_t text_len );
206 
222 int mbedtls_asn1_write_printable_string( unsigned char **p,
223  unsigned char *start,
224  const char *text, size_t text_len );
225 
241 int mbedtls_asn1_write_utf8_string( unsigned char **p, unsigned char *start,
242  const char *text, size_t text_len );
243 
259 int mbedtls_asn1_write_ia5_string( unsigned char **p, unsigned char *start,
260  const char *text, size_t text_len );
261 
276 int mbedtls_asn1_write_bitstring( unsigned char **p, unsigned char *start,
277  const unsigned char *buf, size_t bits );
278 
293 int mbedtls_asn1_write_octet_string( unsigned char **p, unsigned char *start,
294  const unsigned char *buf, size_t size );
295 
314  const char *oid, size_t oid_len,
315  const unsigned char *val,
316  size_t val_len );
317 
318 #ifdef __cplusplus
319 }
320 #endif
321 
322 #endif /* MBEDTLS_ASN1_WRITE_H */
int mbedtls_asn1_write_bitstring(unsigned char **p, unsigned char *start, const unsigned char *buf, size_t bits)
Write a bitstring tag (MBEDTLS_ASN1_BIT_STRING) and value in ASN.1 format.
mbedtls_asn1_buf oid
Definition: asn1.h:168
int mbedtls_asn1_write_null(unsigned char **p, unsigned char *start)
Write a NULL tag (MBEDTLS_ASN1_NULL) with zero data in ASN.1 format.
Definition: asn1.h:166
Generic ASN.1 parsing.
int mbedtls_asn1_write_int(unsigned char **p, unsigned char *start, int val)
Write an int tag (MBEDTLS_ASN1_INTEGER) and value in ASN.1 format.
int mbedtls_asn1_write_bool(unsigned char **p, unsigned char *start, int boolean)
Write a boolean tag (MBEDTLS_ASN1_BOOLEAN) and value in ASN.1 format.
int mbedtls_asn1_write_len(unsigned char **p, unsigned char *start, size_t len)
Write a length field in ASN.1 format.
mbedtls_asn1_buf val
Definition: asn1.h:169
int mbedtls_asn1_write_octet_string(unsigned char **p, unsigned char *start, const unsigned char *buf, size_t size)
Write an octet string tag (MBEDTLS_ASN1_OCTET_STRING) and value in ASN.1 format.
int mbedtls_asn1_write_utf8_string(unsigned char **p, unsigned char *start, const char *text, size_t text_len)
Write a UTF8 string in ASN.1 format using the UTF8String string encoding tag (MBEDTLS_ASN1_PRINTABLE_...
int mbedtls_asn1_write_printable_string(unsigned char **p, unsigned char *start, const char *text, size_t text_len)
Write a string in ASN.1 format using the PrintableString string encoding tag (MBEDTLS_ASN1_PRINTABLE_...
int mbedtls_asn1_write_algorithm_identifier(unsigned char **p, unsigned char *start, const char *oid, size_t oid_len, size_t par_len)
Write an AlgorithmIdentifier sequence in ASN.1 format.
MPI structure.
Definition: bignum.h:180
mbedtls_asn1_named_data * mbedtls_asn1_store_named_data(mbedtls_asn1_named_data **list, const char *oid, size_t oid_len, const unsigned char *val, size_t val_len)
Create or find a specific named_data entry for writing in a sequence or list based on the OID....
int mbedtls_asn1_write_ia5_string(unsigned char **p, unsigned char *start, const char *text, size_t text_len)
Write a string in ASN.1 format using the IA5String string encoding tag (MBEDTLS_ASN1_IA5_STRING).
int mbedtls_asn1_write_raw_buffer(unsigned char **p, unsigned char *start, const unsigned char *buf, size_t size)
Write raw buffer data.
int mbedtls_asn1_write_tag(unsigned char **p, unsigned char *start, unsigned char tag)
Write an ASN.1 tag in ASN.1 format.
int mbedtls_asn1_write_oid(unsigned char **p, unsigned char *start, const char *oid, size_t oid_len)
Write an OID tag (MBEDTLS_ASN1_OID) and data in ASN.1 format.
int mbedtls_asn1_write_tagged_string(unsigned char **p, unsigned char *start, int tag, const char *text, size_t text_len)
Write a string in ASN.1 format using a specific string encoding tag.