blob: 5975584da263afc993f6fc4cd0280522fef7f139 [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
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * 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.
Paul Bakker7c6b2c32013-09-16 13:49:26 +020021 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#ifndef MBEDTLS_X509_CSR_H
23#define MBEDTLS_X509_CSR_H
Paul Bakker7c6b2c32013-09-16 13:49:26 +020024
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#if !defined(MBEDTLS_CONFIG_FILE)
Jaeden Amero6609aef2019-07-04 20:01:14 +010026#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020027#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020029#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +020030
Jaeden Amero6609aef2019-07-04 20:01:14 +010031#include "mbedtls/x509.h"
Paul Bakker7c6b2c32013-09-16 13:49:26 +020032
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37/**
38 * \addtogroup x509_module
39 * \{ */
40
41/**
42 * \name Structures and functions for X.509 Certificate Signing Requests (CSR)
43 * \{
44 */
45
46/**
47 * Certificate Signing Request (CSR) structure.
48 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010049typedef struct mbedtls_x509_csr {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020050 mbedtls_x509_buf raw; /**< The raw CSR data (DER). */
51 mbedtls_x509_buf cri; /**< The raw CertificateRequestInfo body (DER). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020052
Manuel Pégourié-Gonnardf4e1b642014-06-19 11:39:46 +020053 int version; /**< CSR version (1=v1). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020054
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020055 mbedtls_x509_buf subject_raw; /**< The raw subject data (DER). */
56 mbedtls_x509_name subject; /**< The parsed subject data (named information object). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020057
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058 mbedtls_pk_context pk; /**< Container for the public key context. */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020059
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060 mbedtls_x509_buf sig_oid;
61 mbedtls_x509_buf sig;
62 mbedtls_md_type_t sig_md; /**< Internal representation of the MD algorithm of the signature algorithm, e.g. MBEDTLS_MD_SHA256 */
63 mbedtls_pk_type_t sig_pk; /**< Internal representation of the Public Key algorithm of the signature algorithm, e.g. MBEDTLS_PK_RSA */
64 void *sig_opts; /**< Signature options to be passed to mbedtls_pk_verify_ext(), e.g. for RSASSA-PSS */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020065}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020066mbedtls_x509_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020067
68/**
69 * Container for writing a CSR
70 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010071typedef struct mbedtls_x509write_csr {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072 mbedtls_pk_context *key;
73 mbedtls_asn1_named_data *subject;
74 mbedtls_md_type_t md_alg;
75 mbedtls_asn1_named_data *extensions;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020076}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020077mbedtls_x509write_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020078
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020079#if defined(MBEDTLS_X509_CSR_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020080/**
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020081 * \brief Load a Certificate Signing Request (CSR) in DER format
82 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +000083 * \note CSR attributes (if any) are currently silently ignored.
84 *
Gilles Peskine07ae2082023-03-07 20:22:51 +010085 * \note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto
86 * subsystem must have been initialized by calling
87 * psa_crypto_init() before calling this function.
88 *
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020089 * \param csr CSR context to fill
90 * \param buf buffer holding the CRL data
91 * \param buflen size of the buffer
92 *
93 * \return 0 if successful, or a specific X509 error code
94 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +010095int mbedtls_x509_csr_parse_der(mbedtls_x509_csr *csr,
96 const unsigned char *buf, size_t buflen);
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020097
98/**
99 * \brief Load a Certificate Signing Request (CSR), DER or PEM format
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200100 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000101 * \note See notes for \c mbedtls_x509_csr_parse_der()
102 *
Gilles Peskine07ae2082023-03-07 20:22:51 +0100103 * \note If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto
104 * subsystem must have been initialized by calling
105 * psa_crypto_init() before calling this function.
106 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200107 * \param csr CSR context to fill
108 * \param buf buffer holding the CRL data
109 * \param buflen size of the buffer
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200110 * (including the terminating null byte for PEM data)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200111 *
112 * \return 0 if successful, or a specific X509 or PEM error code
113 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100114int mbedtls_x509_csr_parse(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200115
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200116#if defined(MBEDTLS_FS_IO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200117/**
118 * \brief Load a Certificate Signing Request (CSR)
119 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000120 * \note See notes for \c mbedtls_x509_csr_parse()
121 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200122 * \param csr CSR context to fill
123 * \param path filename to read the CSR from
124 *
125 * \return 0 if successful, or a specific X509 or PEM error code
126 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100127int mbedtls_x509_csr_parse_file(mbedtls_x509_csr *csr, const char *path);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200128#endif /* MBEDTLS_FS_IO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200129
130/**
131 * \brief Returns an informational string about the
132 * CSR.
133 *
134 * \param buf Buffer to write to
135 * \param size Maximum size of buffer
136 * \param prefix A line prefix
137 * \param csr The X509 CSR to represent
138 *
Manuel Pégourié-Gonnarde244f9f2015-06-23 12:10:45 +0200139 * \return The length of the string written (not including the
140 * terminated nul byte), or a negative error code.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200141 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100142int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix,
143 const mbedtls_x509_csr *csr);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200144
145/**
Paul Bakker369d2eb2013-09-18 11:58:25 +0200146 * \brief Initialize a CSR
147 *
148 * \param csr CSR to initialize
149 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100150void mbedtls_x509_csr_init(mbedtls_x509_csr *csr);
Paul Bakker369d2eb2013-09-18 11:58:25 +0200151
152/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200153 * \brief Unallocate all CSR data
154 *
155 * \param csr CSR to free
156 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100157void mbedtls_x509_csr_free(mbedtls_x509_csr *csr);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200158#endif /* MBEDTLS_X509_CSR_PARSE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200159
Andrzej Kurek73afe272022-01-24 10:31:06 -0500160/** \} name Structures and functions for X.509 Certificate Signing Requests (CSR) */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200161
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200162#if defined(MBEDTLS_X509_CSR_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200163/**
164 * \brief Initialize a CSR context
165 *
166 * \param ctx CSR context to initialize
167 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100168void mbedtls_x509write_csr_init(mbedtls_x509write_csr *ctx);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200169
170/**
171 * \brief Set the subject name for a CSR
172 * Subject names should contain a comma-separated list
173 * of OID types and values:
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +0000174 * e.g. "C=UK,O=ARM,CN=mbed TLS Server 1"
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200175 *
176 * \param ctx CSR context to use
177 * \param subject_name subject name to set
178 *
179 * \return 0 if subject name was parsed successfully, or
180 * a specific error code
181 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100182int mbedtls_x509write_csr_set_subject_name(mbedtls_x509write_csr *ctx,
183 const char *subject_name);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200184
185/**
186 * \brief Set the key for a CSR (public key will be included,
187 * private key used to sign the CSR when writing it)
188 *
189 * \param ctx CSR context to use
Shaun Case0e7791f2021-12-20 21:14:10 -0800190 * \param key Asymmetric key to include
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200191 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100192void mbedtls_x509write_csr_set_key(mbedtls_x509write_csr *ctx, mbedtls_pk_context *key);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200193
194/**
195 * \brief Set the MD algorithm to use for the signature
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200196 * (e.g. MBEDTLS_MD_SHA1)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200197 *
198 * \param ctx CSR context to use
199 * \param md_alg MD algorithm to use
200 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100201void mbedtls_x509write_csr_set_md_alg(mbedtls_x509write_csr *ctx, mbedtls_md_type_t md_alg);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200202
203/**
204 * \brief Set the Key Usage Extension flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200205 * (e.g. MBEDTLS_X509_KU_DIGITAL_SIGNATURE | MBEDTLS_X509_KU_KEY_CERT_SIGN)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200206 *
207 * \param ctx CSR context to use
208 * \param key_usage key usage flags to set
209 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200210 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Andres Amaya Garciad8233f72018-10-08 19:44:55 +0100211 *
212 * \note The <code>decipherOnly</code> flag from the Key Usage
213 * extension is represented by bit 8 (i.e.
214 * <code>0x8000</code>), which cannot typically be represented
215 * in an unsigned char. Therefore, the flag
216 * <code>decipherOnly</code> (i.e.
217 * #MBEDTLS_X509_KU_DECIPHER_ONLY) cannot be set using this
218 * function.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200219 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100220int mbedtls_x509write_csr_set_key_usage(mbedtls_x509write_csr *ctx, unsigned char key_usage);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200221
222/**
223 * \brief Set the Netscape Cert Type flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224 * (e.g. MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT | MBEDTLS_X509_NS_CERT_TYPE_EMAIL)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200225 *
226 * \param ctx CSR context to use
227 * \param ns_cert_type Netscape Cert Type flags to set
228 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200229 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200230 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100231int mbedtls_x509write_csr_set_ns_cert_type(mbedtls_x509write_csr *ctx,
232 unsigned char ns_cert_type);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200233
234/**
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200235 * \brief Generic function to add to or replace an extension in the
236 * CSR
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200237 *
238 * \param ctx CSR context to use
239 * \param oid OID of the extension
240 * \param oid_len length of the OID
241 * \param val value of the extension OCTET STRING
242 * \param val_len length of the value data
243 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200244 * \return 0 if successful, or a MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200245 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100246int mbedtls_x509write_csr_set_extension(mbedtls_x509write_csr *ctx,
247 const char *oid, size_t oid_len,
248 const unsigned char *val, size_t val_len);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200249
250/**
251 * \brief Free the contents of a CSR context
252 *
253 * \param ctx CSR context to free
254 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100255void mbedtls_x509write_csr_free(mbedtls_x509write_csr *ctx);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200256
257/**
258 * \brief Write a CSR (Certificate Signing Request) to a
259 * DER structure
260 * Note: data is written at the end of the buffer! Use the
261 * return value to determine where you should start
262 * using the buffer
263 *
264 * \param ctx CSR to write away
265 * \param buf buffer to write to
266 * \param size size of the buffer
267 * \param f_rng RNG function (for signature, see note)
268 * \param p_rng RNG parameter
269 *
270 * \return length of data written if successful, or a specific
271 * error code
272 *
273 * \note f_rng may be NULL if RSA is used for signature and the
274 * signature is made offline (otherwise f_rng is desirable
275 * for countermeasures against timing attacks).
276 * ECDSA signatures always require a non-NULL f_rng.
277 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100278int mbedtls_x509write_csr_der(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
279 int (*f_rng)(void *, unsigned char *, size_t),
280 void *p_rng);
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200281
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200282#if defined(MBEDTLS_PEM_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200283/**
284 * \brief Write a CSR (Certificate Signing Request) to a
285 * PEM string
286 *
287 * \param ctx CSR to write away
288 * \param buf buffer to write to
289 * \param size size of the buffer
290 * \param f_rng RNG function (for signature, see note)
291 * \param p_rng RNG parameter
292 *
Manuel Pégourié-Gonnard81abefd2015-05-29 12:53:47 +0200293 * \return 0 if successful, or a specific error code
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200294 *
295 * \note f_rng may be NULL if RSA is used for signature and the
296 * signature is made offline (otherwise f_rng is desirable
Andres AGcd153272016-10-04 12:06:50 +0100297 * for countermeasures against timing attacks).
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200298 * ECDSA signatures always require a non-NULL f_rng.
299 */
Gilles Peskine1b6c09a2023-01-11 14:52:35 +0100300int mbedtls_x509write_csr_pem(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
301 int (*f_rng)(void *, unsigned char *, size_t),
302 void *p_rng);
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200303#endif /* MBEDTLS_PEM_WRITE_C */
304#endif /* MBEDTLS_X509_CSR_WRITE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200305
Andrzej Kurekff632d52022-01-24 10:32:00 -0500306/** \} addtogroup x509_module */
307
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200308#ifdef __cplusplus
309}
310#endif
311
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200312#endif /* mbedtls_x509_csr.h */