blob: 8c31c09af4c30ad1f0110a4a4836a48a1502dbab [file] [log] [blame]
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001/**
Simon Butcher5b331b92016-01-03 16:14:14 +00002 * \file x509_csr.h
Paul Bakker7c6b2c32013-09-16 13:49:26 +02003 *
4 * \brief X.509 certificate signing request parsing and writing
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00008 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Paul Bakker7c6b2c32013-09-16 13:49:26 +02009 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020010#ifndef MBEDTLS_X509_CSR_H
11#define MBEDTLS_X509_CSR_H
Mateusz Starzyk846f0212021-05-19 19:44:07 +020012#include "mbedtls/private_access.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020013
Bence Szépkútic662b362021-05-27 11:25:03 +020014#include "mbedtls/build_info.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020015
Jaeden Amero6609aef2019-07-04 20:01:14 +010016#include "mbedtls/x509.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020017
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22/**
23 * \addtogroup x509_module
24 * \{ */
25
26/**
27 * \name Structures and functions for X.509 Certificate Signing Requests (CSR)
28 * \{
29 */
30
31/**
32 * Certificate Signing Request (CSR) structure.
Gilles Peskine842edf42021-08-04 21:56:10 +020033 *
34 * Some fields of this structure are publicly readable. Do not modify
35 * them except via Mbed TLS library functions: the effect of modifying
Gilles Peskine44ffc792021-08-31 22:59:35 +020036 * those fields or the data that those fields point to is unspecified.
Paul Bakker7c6b2c32013-09-16 13:49:26 +020037 */
Gilles Peskine449bd832023-01-11 14:50:10 +010038typedef struct mbedtls_x509_csr {
Gilles Peskine842edf42021-08-04 21:56:10 +020039 mbedtls_x509_buf raw; /**< The raw CSR data (DER). */
40 mbedtls_x509_buf cri; /**< The raw CertificateRequestInfo body (DER). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020041
Gilles Peskine842edf42021-08-04 21:56:10 +020042 int version; /**< CSR version (1=v1). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020043
Gilles Peskine842edf42021-08-04 21:56:10 +020044 mbedtls_x509_buf subject_raw; /**< The raw subject data (DER). */
45 mbedtls_x509_name subject; /**< The parsed subject data (named information object). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020046
Gilles Peskine842edf42021-08-04 21:56:10 +020047 mbedtls_pk_context pk; /**< Container for the public key context. */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020048
Jens Alfke2d9e3592019-10-29 15:03:37 -070049 unsigned int key_usage; /**< Optional key usage extension value: See the values in x509.h */
50 unsigned char ns_cert_type; /**< Optional Netscape certificate type extension value: See the values in x509.h */
Andrzej Kurek17473042023-04-30 14:11:23 -040051 mbedtls_x509_sequence subject_alt_names; /**< Optional list of raw entries of Subject Alternative Names extension. These can be later parsed by mbedtls_x509_parse_subject_alt_name. */
Jens Alfke2d9e3592019-10-29 15:03:37 -070052
Przemek Stekielcbaf3162023-01-12 12:58:02 +010053 int MBEDTLS_PRIVATE(ext_types); /**< Bit string containing detected and parsed extensions */
54
Gilles Peskine842edf42021-08-04 21:56:10 +020055 mbedtls_x509_buf sig_oid;
Mateusz Starzyk846f0212021-05-19 19:44:07 +020056 mbedtls_x509_buf MBEDTLS_PRIVATE(sig);
57 mbedtls_md_type_t MBEDTLS_PRIVATE(sig_md); /**< Internal representation of the MD algorithm of the signature algorithm, e.g. MBEDTLS_MD_SHA256 */
58 mbedtls_pk_type_t MBEDTLS_PRIVATE(sig_pk); /**< Internal representation of the Public Key algorithm of the signature algorithm, e.g. MBEDTLS_PK_RSA */
59 void *MBEDTLS_PRIVATE(sig_opts); /**< Signature options to be passed to mbedtls_pk_verify_ext(), e.g. for RSASSA-PSS */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020060}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061mbedtls_x509_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020062
63/**
64 * Container for writing a CSR
65 */
Gilles Peskine449bd832023-01-11 14:50:10 +010066typedef struct mbedtls_x509write_csr {
Mateusz Starzyk846f0212021-05-19 19:44:07 +020067 mbedtls_pk_context *MBEDTLS_PRIVATE(key);
68 mbedtls_asn1_named_data *MBEDTLS_PRIVATE(subject);
69 mbedtls_md_type_t MBEDTLS_PRIVATE(md_alg);
70 mbedtls_asn1_named_data *MBEDTLS_PRIVATE(extensions);
Paul Bakker7c6b2c32013-09-16 13:49:26 +020071}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072mbedtls_x509write_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020073
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074#if defined(MBEDTLS_X509_CSR_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020075/**
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020076 * \brief Load a Certificate Signing Request (CSR) in DER format
77 *
Matthias Schulzc55b5002023-11-07 16:47:37 +010078 * \note Any unsupported requested extensions are silently
79 * ignored, unless the critical flag is set, in which case
80 * the CSR is rejected.
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +000081 *
Gilles Peskine5b7e1642022-08-04 23:44:59 +020082 * \note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto
83 * subsystem must have been initialized by calling
84 * psa_crypto_init() before calling this function.
85 *
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020086 * \param csr CSR context to fill
87 * \param buf buffer holding the CRL data
88 * \param buflen size of the buffer
89 *
90 * \return 0 if successful, or a specific X509 error code
91 */
Gilles Peskine449bd832023-01-11 14:50:10 +010092int mbedtls_x509_csr_parse_der(mbedtls_x509_csr *csr,
93 const unsigned char *buf, size_t buflen);
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020094
95/**
Matthias Schulzab408222023-10-18 13:20:59 +020096 * \brief The type of certificate extension callbacks.
97 *
98 * Callbacks of this type are passed to and used by the
99 * mbedtls_x509_csr_parse_der_with_ext_cb() routine when
100 * it encounters either an unsupported extension.
101 * Future versions of the library may invoke the callback
102 * in other cases, if and when the need arises.
103 *
104 * \param p_ctx An opaque context passed to the callback.
105 * \param csr The CSR being parsed.
106 * \param oid The OID of the extension.
107 * \param critical Whether the extension is critical.
108 * \param p Pointer to the start of the extension value
109 * (the content of the OCTET STRING).
110 * \param end End of extension value.
111 *
112 * \note The callback must fail and return a negative error code
113 * if it can not parse or does not support the extension.
114 * When the callback fails to parse a critical extension
115 * mbedtls_x509_csr_parse_der_with_ext_cb() also fails.
116 * When the callback fails to parse a non critical extension
117 * mbedtls_x509_csr_parse_der_with_ext_cb() simply skips
118 * the extension and continues parsing.
119 *
120 * \return \c 0 on success.
121 * \return A negative error code on failure.
122 */
123typedef int (*mbedtls_x509_csr_ext_cb_t)(void *p_ctx,
124 mbedtls_x509_csr const *csr,
125 mbedtls_x509_buf const *oid,
126 int critical,
127 const unsigned char *p,
128 const unsigned char *end);
129
130/**
131 * \brief Load a Certificate Signing Request (CSR) in DER format
132 *
Matthias Schulzc55b5002023-11-07 16:47:37 +0100133 * \note Any unsupported requested extensions are silently
134 * ignored, unless the critical flag is set, in which case
135 * the result of the callback function decides whether
136 * CSR is rejected.
Matthias Schulzab408222023-10-18 13:20:59 +0200137 *
138 * \note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto
139 * subsystem must have been initialized by calling
140 * psa_crypto_init() before calling this function.
141 *
142 * \param csr CSR context to fill
143 * \param buf buffer holding the CRL data
144 * \param buflen size of the buffer
145 * \param cb A callback invoked for every unsupported certificate
146 * extension.
147 * \param p_ctx An opaque context passed to the callback.
148 *
149 * \return 0 if successful, or a specific X509 error code
150 */
151int mbedtls_x509_csr_parse_der_with_ext_cb(mbedtls_x509_csr *csr,
Matthias Schulzedc32ea2023-10-19 16:09:08 +0200152 const unsigned char *buf, size_t buflen,
153 mbedtls_x509_csr_ext_cb_t cb,
154 void *p_ctx);
Matthias Schulzab408222023-10-18 13:20:59 +0200155
156/**
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +0200157 * \brief Load a Certificate Signing Request (CSR), DER or PEM format
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200158 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000159 * \note See notes for \c mbedtls_x509_csr_parse_der()
160 *
Gilles Peskine5b7e1642022-08-04 23:44:59 +0200161 * \note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto
162 * subsystem must have been initialized by calling
163 * psa_crypto_init() before calling this function.
164 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200165 * \param csr CSR context to fill
166 * \param buf buffer holding the CRL data
167 * \param buflen size of the buffer
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200168 * (including the terminating null byte for PEM data)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200169 *
170 * \return 0 if successful, or a specific X509 or PEM error code
171 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100172int mbedtls_x509_csr_parse(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200173
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174#if defined(MBEDTLS_FS_IO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200175/**
176 * \brief Load a Certificate Signing Request (CSR)
177 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000178 * \note See notes for \c mbedtls_x509_csr_parse()
179 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200180 * \param csr CSR context to fill
181 * \param path filename to read the CSR from
182 *
183 * \return 0 if successful, or a specific X509 or PEM error code
184 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100185int mbedtls_x509_csr_parse_file(mbedtls_x509_csr *csr, const char *path);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200186#endif /* MBEDTLS_FS_IO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200187
Hanno Becker612a2f12020-10-09 09:19:39 +0100188#if !defined(MBEDTLS_X509_REMOVE_INFO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200189/**
190 * \brief Returns an informational string about the
191 * CSR.
192 *
193 * \param buf Buffer to write to
194 * \param size Maximum size of buffer
195 * \param prefix A line prefix
196 * \param csr The X509 CSR to represent
197 *
Manuel Pégourié-Gonnarde244f9f2015-06-23 12:10:45 +0200198 * \return The length of the string written (not including the
199 * terminated nul byte), or a negative error code.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200200 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100201int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix,
202 const mbedtls_x509_csr *csr);
Hanno Becker88c2bf32019-06-14 17:21:24 +0100203#endif /* !MBEDTLS_X509_REMOVE_INFO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200204
205/**
Paul Bakker369d2eb2013-09-18 11:58:25 +0200206 * \brief Initialize a CSR
207 *
208 * \param csr CSR to initialize
209 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100210void mbedtls_x509_csr_init(mbedtls_x509_csr *csr);
Paul Bakker369d2eb2013-09-18 11:58:25 +0200211
212/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200213 * \brief Unallocate all CSR data
214 *
215 * \param csr CSR to free
216 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100217void mbedtls_x509_csr_free(mbedtls_x509_csr *csr);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200218#endif /* MBEDTLS_X509_CSR_PARSE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200219
Andrzej Kurek38d4fdd2021-12-28 16:22:52 +0100220/** \} name Structures and functions for X.509 Certificate Signing Requests (CSR) */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200221
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200222#if defined(MBEDTLS_X509_CSR_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200223/**
224 * \brief Initialize a CSR context
225 *
226 * \param ctx CSR context to initialize
227 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100228void mbedtls_x509write_csr_init(mbedtls_x509write_csr *ctx);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200229
230/**
231 * \brief Set the subject name for a CSR
232 * Subject names should contain a comma-separated list
233 * of OID types and values:
Gilles Peskinee820c0a2023-08-03 17:45:20 +0200234 * e.g. "C=UK,O=ARM,CN=Mbed TLS Server 1"
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200235 *
236 * \param ctx CSR context to use
237 * \param subject_name subject name to set
238 *
239 * \return 0 if subject name was parsed successfully, or
240 * a specific error code
241 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100242int mbedtls_x509write_csr_set_subject_name(mbedtls_x509write_csr *ctx,
243 const char *subject_name);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200244
245/**
246 * \brief Set the key for a CSR (public key will be included,
247 * private key used to sign the CSR when writing it)
248 *
249 * \param ctx CSR context to use
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800250 * \param key Asymmetric key to include
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200251 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100252void mbedtls_x509write_csr_set_key(mbedtls_x509write_csr *ctx, mbedtls_pk_context *key);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200253
254/**
255 * \brief Set the MD algorithm to use for the signature
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200256 * (e.g. MBEDTLS_MD_SHA1)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200257 *
258 * \param ctx CSR context to use
259 * \param md_alg MD algorithm to use
260 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100261void mbedtls_x509write_csr_set_md_alg(mbedtls_x509write_csr *ctx, mbedtls_md_type_t md_alg);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200262
263/**
264 * \brief Set the Key Usage Extension flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200265 * (e.g. MBEDTLS_X509_KU_DIGITAL_SIGNATURE | MBEDTLS_X509_KU_KEY_CERT_SIGN)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200266 *
267 * \param ctx CSR context to use
268 * \param key_usage key usage flags to set
269 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200270 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Andres Amaya Garciad8233f72018-10-08 19:44:55 +0100271 *
272 * \note The <code>decipherOnly</code> flag from the Key Usage
273 * extension is represented by bit 8 (i.e.
274 * <code>0x8000</code>), which cannot typically be represented
275 * in an unsigned char. Therefore, the flag
276 * <code>decipherOnly</code> (i.e.
277 * #MBEDTLS_X509_KU_DECIPHER_ONLY) cannot be set using this
278 * function.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200279 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100280int mbedtls_x509write_csr_set_key_usage(mbedtls_x509write_csr *ctx, unsigned char key_usage);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200281
282/**
Hannes Tschofenig6b108602022-12-28 18:38:53 +0100283 * \brief Set Subject Alternative Name
284 *
285 * \param ctx CSR context to use
286 * \param san_list List of SAN values
287 *
288 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
289 *
290 * \note Only "dnsName", "uniformResourceIdentifier" and "otherName",
291 * as defined in RFC 5280, are supported.
292 */
293int mbedtls_x509write_csr_set_subject_alternative_name(mbedtls_x509write_csr *ctx,
294 const mbedtls_x509_san_list *san_list);
295
296/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200297 * \brief Set the Netscape Cert Type flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298 * (e.g. MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT | MBEDTLS_X509_NS_CERT_TYPE_EMAIL)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200299 *
300 * \param ctx CSR context to use
301 * \param ns_cert_type Netscape Cert Type flags to set
302 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200303 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200304 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100305int mbedtls_x509write_csr_set_ns_cert_type(mbedtls_x509write_csr *ctx,
306 unsigned char ns_cert_type);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200307
308/**
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200309 * \brief Generic function to add to or replace an extension in the
310 * CSR
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200311 *
312 * \param ctx CSR context to use
313 * \param oid OID of the extension
314 * \param oid_len length of the OID
Christoph Reiter95273f42021-01-21 13:31:23 +0100315 * \param critical Set to 1 to mark the extension as critical, 0 otherwise.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200316 * \param val value of the extension OCTET STRING
317 * \param val_len length of the value data
318 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200319 * \return 0 if successful, or a MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200320 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100321int mbedtls_x509write_csr_set_extension(mbedtls_x509write_csr *ctx,
322 const char *oid, size_t oid_len,
323 int critical,
324 const unsigned char *val, size_t val_len);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200325
326/**
327 * \brief Free the contents of a CSR context
328 *
329 * \param ctx CSR context to free
330 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100331void mbedtls_x509write_csr_free(mbedtls_x509write_csr *ctx);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200332
333/**
334 * \brief Write a CSR (Certificate Signing Request) to a
335 * DER structure
336 * Note: data is written at the end of the buffer! Use the
337 * return value to determine where you should start
338 * using the buffer
339 *
340 * \param ctx CSR to write away
341 * \param buf buffer to write to
342 * \param size size of the buffer
Manuel Pégourié-Gonnardc305b722021-06-15 11:29:26 +0200343 * \param f_rng RNG function. This must not be \c NULL.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200344 * \param p_rng RNG parameter
345 *
346 * \return length of data written if successful, or a specific
347 * error code
348 *
Manuel Pégourié-Gonnardc305b722021-06-15 11:29:26 +0200349 * \note \p f_rng is used for the signature operation.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200350 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100351int mbedtls_x509write_csr_der(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
352 int (*f_rng)(void *, unsigned char *, size_t),
353 void *p_rng);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200354
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200355#if defined(MBEDTLS_PEM_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200356/**
357 * \brief Write a CSR (Certificate Signing Request) to a
358 * PEM string
359 *
360 * \param ctx CSR to write away
361 * \param buf buffer to write to
362 * \param size size of the buffer
Manuel Pégourié-Gonnardc305b722021-06-15 11:29:26 +0200363 * \param f_rng RNG function. This must not be \c NULL.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200364 * \param p_rng RNG parameter
365 *
Manuel Pégourié-Gonnard81abefd2015-05-29 12:53:47 +0200366 * \return 0 if successful, or a specific error code
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200367 *
Manuel Pégourié-Gonnardc305b722021-06-15 11:29:26 +0200368 * \note \p f_rng is used for the signature operation.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200369 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100370int mbedtls_x509write_csr_pem(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
371 int (*f_rng)(void *, unsigned char *, size_t),
372 void *p_rng);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200373#endif /* MBEDTLS_PEM_WRITE_C */
374#endif /* MBEDTLS_X509_CSR_WRITE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200375
Andrzej Kureka0defed2021-12-30 12:33:31 +0100376/** \} addtogroup x509_module */
377
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200378#ifdef __cplusplus
379}
380#endif
381
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200382#endif /* mbedtls_x509_csr.h */