blob: cc134ceebf0fbb9fe8b8be21fbb0966707b8b5b5 [file] [log] [blame]
Jaeden Ameroe54e6932018-08-06 16:19:58 +01001/**
2 * \file asn1write.h
3 *
4 * \brief ASN.1 buffer writing functionality
5 */
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 Crypto (https://tls.mbed.org)
23 */
24#ifndef MBEDCRYPTO_ASN1_WRITE_H
25#define MBEDCRYPTO_ASN1_WRITE_H
26
27#include "asn1.h"
28
29#define MBEDCRYPTO_ASN1_CHK_ADD(g, f) do { if( ( ret = f ) < 0 ) return( ret ); else \
30 g += ret; } while( 0 )
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/**
37 * \brief Write a length field in ASN.1 format
38 * Note: function works backwards in data buffer
39 *
40 * \param p reference to current position pointer
41 * \param start start of the buffer (for bounds-checking)
42 * \param len the length to write
43 *
44 * \return the length written or a negative error code
45 */
46int mbedcrypto_asn1_write_len( unsigned char **p, unsigned char *start, size_t len );
47
48/**
49 * \brief Write a ASN.1 tag in ASN.1 format
50 * Note: function works backwards in data buffer
51 *
52 * \param p reference to current position pointer
53 * \param start start of the buffer (for bounds-checking)
54 * \param tag the tag to write
55 *
56 * \return the length written or a negative error code
57 */
58int mbedcrypto_asn1_write_tag( unsigned char **p, unsigned char *start,
59 unsigned char tag );
60
61/**
62 * \brief Write raw buffer data
63 * Note: function works backwards in data buffer
64 *
65 * \param p reference to current position pointer
66 * \param start start of the buffer (for bounds-checking)
67 * \param buf data buffer to write
68 * \param size length of the data buffer
69 *
70 * \return the length written or a negative error code
71 */
72int mbedcrypto_asn1_write_raw_buffer( unsigned char **p, unsigned char *start,
73 const unsigned char *buf, size_t size );
74
75#if defined(MBEDCRYPTO_BIGNUM_C)
76/**
77 * \brief Write a big number (MBEDCRYPTO_ASN1_INTEGER) in ASN.1 format
78 * Note: function works backwards in data buffer
79 *
80 * \param p reference to current position pointer
81 * \param start start of the buffer (for bounds-checking)
82 * \param X the MPI to write
83 *
84 * \return the length written or a negative error code
85 */
86int mbedcrypto_asn1_write_mpi( unsigned char **p, unsigned char *start, const mbedcrypto_mpi *X );
87#endif /* MBEDCRYPTO_BIGNUM_C */
88
89/**
90 * \brief Write a NULL tag (MBEDCRYPTO_ASN1_NULL) with zero data in ASN.1 format
91 * Note: function works backwards in data buffer
92 *
93 * \param p reference to current position pointer
94 * \param start start of the buffer (for bounds-checking)
95 *
96 * \return the length written or a negative error code
97 */
98int mbedcrypto_asn1_write_null( unsigned char **p, unsigned char *start );
99
100/**
101 * \brief Write an OID tag (MBEDCRYPTO_ASN1_OID) and data in ASN.1 format
102 * Note: function works backwards in data buffer
103 *
104 * \param p reference to current position pointer
105 * \param start start of the buffer (for bounds-checking)
106 * \param oid the OID to write
107 * \param oid_len length of the OID
108 *
109 * \return the length written or a negative error code
110 */
111int mbedcrypto_asn1_write_oid( unsigned char **p, unsigned char *start,
112 const char *oid, size_t oid_len );
113
114/**
115 * \brief Write an AlgorithmIdentifier sequence in ASN.1 format
116 * Note: function works backwards in data buffer
117 *
118 * \param p reference to current position pointer
119 * \param start start of the buffer (for bounds-checking)
120 * \param oid the OID of the algorithm
121 * \param oid_len length of the OID
122 * \param par_len length of parameters, which must be already written.
123 * If 0, NULL parameters are added
124 *
125 * \return the length written or a negative error code
126 */
127int mbedcrypto_asn1_write_algorithm_identifier( unsigned char **p, unsigned char *start,
128 const char *oid, size_t oid_len,
129 size_t par_len );
130
131/**
132 * \brief Write a boolean tag (MBEDCRYPTO_ASN1_BOOLEAN) and value in ASN.1 format
133 * Note: function works backwards in data buffer
134 *
135 * \param p reference to current position pointer
136 * \param start start of the buffer (for bounds-checking)
137 * \param boolean 0 or 1
138 *
139 * \return the length written or a negative error code
140 */
141int mbedcrypto_asn1_write_bool( unsigned char **p, unsigned char *start, int boolean );
142
143/**
144 * \brief Write an int tag (MBEDCRYPTO_ASN1_INTEGER) and value in ASN.1 format
145 * Note: function works backwards in data buffer
146 *
147 * \param p reference to current position pointer
148 * \param start start of the buffer (for bounds-checking)
149 * \param val the integer value
150 *
151 * \return the length written or a negative error code
152 */
153int mbedcrypto_asn1_write_int( unsigned char **p, unsigned char *start, int val );
154
155/**
156 * \brief Write a printable string tag (MBEDCRYPTO_ASN1_PRINTABLE_STRING) and
157 * value in ASN.1 format
158 * Note: function works backwards in data buffer
159 *
160 * \param p reference to current position pointer
161 * \param start start of the buffer (for bounds-checking)
162 * \param text the text to write
163 * \param text_len length of the text
164 *
165 * \return the length written or a negative error code
166 */
167int mbedcrypto_asn1_write_printable_string( unsigned char **p, unsigned char *start,
168 const char *text, size_t text_len );
169
170/**
171 * \brief Write an IA5 string tag (MBEDCRYPTO_ASN1_IA5_STRING) and
172 * value in ASN.1 format
173 * Note: function works backwards in data buffer
174 *
175 * \param p reference to current position pointer
176 * \param start start of the buffer (for bounds-checking)
177 * \param text the text to write
178 * \param text_len length of the text
179 *
180 * \return the length written or a negative error code
181 */
182int mbedcrypto_asn1_write_ia5_string( unsigned char **p, unsigned char *start,
183 const char *text, size_t text_len );
184
185/**
186 * \brief Write a bitstring tag (MBEDCRYPTO_ASN1_BIT_STRING) and
187 * value in ASN.1 format
188 * Note: function works backwards in data buffer
189 *
190 * \param p reference to current position pointer
191 * \param start start of the buffer (for bounds-checking)
192 * \param buf the bitstring
193 * \param bits the total number of bits in the bitstring
194 *
195 * \return the length written or a negative error code
196 */
197int mbedcrypto_asn1_write_bitstring( unsigned char **p, unsigned char *start,
198 const unsigned char *buf, size_t bits );
199
200/**
201 * \brief Write an octet string tag (MBEDCRYPTO_ASN1_OCTET_STRING) and
202 * value in ASN.1 format
203 * Note: function works backwards in data buffer
204 *
205 * \param p reference to current position pointer
206 * \param start start of the buffer (for bounds-checking)
207 * \param buf data buffer to write
208 * \param size length of the data buffer
209 *
210 * \return the length written or a negative error code
211 */
212int mbedcrypto_asn1_write_octet_string( unsigned char **p, unsigned char *start,
213 const unsigned char *buf, size_t size );
214
215/**
216 * \brief Create or find a specific named_data entry for writing in a
217 * sequence or list based on the OID. If not already in there,
218 * a new entry is added to the head of the list.
219 * Warning: Destructive behaviour for the val data!
220 *
221 * \param list Pointer to the location of the head of the list to seek
222 * through (will be updated in case of a new entry)
223 * \param oid The OID to look for
224 * \param oid_len Size of the OID
225 * \param val Data to store (can be NULL if you want to fill it by hand)
226 * \param val_len Minimum length of the data buffer needed
227 *
228 * \return NULL if if there was a memory allocation error, or a pointer
229 * to the new / existing entry.
230 */
231mbedcrypto_asn1_named_data *mbedcrypto_asn1_store_named_data( mbedcrypto_asn1_named_data **list,
232 const char *oid, size_t oid_len,
233 const unsigned char *val,
234 size_t val_len );
235
236#ifdef __cplusplus
237}
238#endif
239
240#endif /* MBEDCRYPTO_ASN1_WRITE_H */