blob: fe9843cb545e7aae949f853deff288b6babcb041 [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
5 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02006 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02007 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Licensed under the Apache License, Version 2.0 (the "License"); you may
10 * not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
17 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
Paul Bakker7c6b2c32013-09-16 13:49:26 +020020 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000021 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020022 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020023#ifndef MBEDTLS_X509_CSR_H
24#define MBEDTLS_X509_CSR_H
Paul Bakker7c6b2c32013-09-16 13:49:26 +020025
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020026#if !defined(MBEDTLS_CONFIG_FILE)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020027#include "config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020028#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020029#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020030#endif
Paul Bakker7c6b2c32013-09-16 13:49:26 +020031
32#include "x509.h"
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/**
39 * \addtogroup x509_module
40 * \{ */
41
42/**
43 * \name Structures and functions for X.509 Certificate Signing Requests (CSR)
44 * \{
45 */
46
47/**
48 * Certificate Signing Request (CSR) structure.
49 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020050typedef struct mbedtls_x509_csr
Paul Bakker7c6b2c32013-09-16 13:49:26 +020051{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020052 mbedtls_x509_buf raw; /**< The raw CSR data (DER). */
53 mbedtls_x509_buf cri; /**< The raw CertificateRequestInfo body (DER). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020054
Manuel Pégourié-Gonnardf4e1b642014-06-19 11:39:46 +020055 int version; /**< CSR version (1=v1). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020056
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020057 mbedtls_x509_buf subject_raw; /**< The raw subject data (DER). */
58 mbedtls_x509_name subject; /**< The parsed subject data (named information object). */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020059
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060 mbedtls_pk_context pk; /**< Container for the public key context. */
Paul Bakker7c6b2c32013-09-16 13:49:26 +020061
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020062 mbedtls_x509_buf sig_oid;
63 mbedtls_x509_buf sig;
64 mbedtls_md_type_t sig_md; /**< Internal representation of the MD algorithm of the signature algorithm, e.g. MBEDTLS_MD_SHA256 */
65 mbedtls_pk_type_t sig_pk; /**< Internal representation of the Public Key algorithm of the signature algorithm, e.g. MBEDTLS_PK_RSA */
66 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 +020067}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020068mbedtls_x509_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020069
70/**
71 * Container for writing a CSR
72 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020073typedef struct mbedtls_x509write_csr
Paul Bakker7c6b2c32013-09-16 13:49:26 +020074{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020075 mbedtls_pk_context *key;
76 mbedtls_asn1_named_data *subject;
77 mbedtls_md_type_t md_alg;
78 mbedtls_asn1_named_data *extensions;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020079}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080mbedtls_x509write_csr;
Paul Bakker7c6b2c32013-09-16 13:49:26 +020081
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020082#if defined(MBEDTLS_X509_CSR_PARSE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +020083/**
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020084 * \brief Load a Certificate Signing Request (CSR) in DER format
85 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +000086 * \note CSR attributes (if any) are currently silently ignored.
87 *
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020088 * \param csr CSR context to fill
89 * \param buf buffer holding the CRL data
90 * \param buflen size of the buffer
91 *
92 * \return 0 if successful, or a specific X509 error code
93 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094int mbedtls_x509_csr_parse_der( mbedtls_x509_csr *csr,
Manuel Pégourié-Gonnardf3b47242014-06-16 18:06:48 +020095 const unsigned char *buf, size_t buflen );
96
97/**
98 * \brief Load a Certificate Signing Request (CSR), DER or PEM format
Paul Bakker7c6b2c32013-09-16 13:49:26 +020099 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000100 * \note See notes for \c mbedtls_x509_csr_parse_der()
101 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200102 * \param csr CSR context to fill
103 * \param buf buffer holding the CRL data
104 * \param buflen size of the buffer
Manuel Pégourié-Gonnard43b37cb2015-05-12 11:20:10 +0200105 * (including the terminating null byte for PEM data)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200106 *
107 * \return 0 if successful, or a specific X509 or PEM error code
108 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109int mbedtls_x509_csr_parse( mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200110
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111#if defined(MBEDTLS_FS_IO)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200112/**
113 * \brief Load a Certificate Signing Request (CSR)
114 *
Manuel Pégourié-Gonnard986bbf22016-02-24 14:36:05 +0000115 * \note See notes for \c mbedtls_x509_csr_parse()
116 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200117 * \param csr CSR context to fill
118 * \param path filename to read the CSR from
119 *
120 * \return 0 if successful, or a specific X509 or PEM error code
121 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200122int mbedtls_x509_csr_parse_file( mbedtls_x509_csr *csr, const char *path );
123#endif /* MBEDTLS_FS_IO */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200124
125/**
126 * \brief Returns an informational string about the
127 * CSR.
128 *
129 * \param buf Buffer to write to
130 * \param size Maximum size of buffer
131 * \param prefix A line prefix
132 * \param csr The X509 CSR to represent
133 *
Manuel Pégourié-Gonnarde244f9f2015-06-23 12:10:45 +0200134 * \return The length of the string written (not including the
135 * terminated nul byte), or a negative error code.
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200136 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200137int mbedtls_x509_csr_info( char *buf, size_t size, const char *prefix,
138 const mbedtls_x509_csr *csr );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200139
140/**
Paul Bakker369d2eb2013-09-18 11:58:25 +0200141 * \brief Initialize a CSR
142 *
143 * \param csr CSR to initialize
144 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200145void mbedtls_x509_csr_init( mbedtls_x509_csr *csr );
Paul Bakker369d2eb2013-09-18 11:58:25 +0200146
147/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200148 * \brief Unallocate all CSR data
149 *
150 * \param csr CSR to free
151 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200152void mbedtls_x509_csr_free( mbedtls_x509_csr *csr );
153#endif /* MBEDTLS_X509_CSR_PARSE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200154
155/* \} name */
156/* \} addtogroup x509_module */
157
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200158#if defined(MBEDTLS_X509_CSR_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200159/**
160 * \brief Initialize a CSR context
161 *
162 * \param ctx CSR context to initialize
163 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164void mbedtls_x509write_csr_init( mbedtls_x509write_csr *ctx );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200165
166/**
167 * \brief Set the subject name for a CSR
168 * Subject names should contain a comma-separated list
169 * of OID types and values:
Manuel Pégourié-Gonnardb4fe3cb2015-01-22 16:11:05 +0000170 * e.g. "C=UK,O=ARM,CN=mbed TLS Server 1"
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200171 *
172 * \param ctx CSR context to use
173 * \param subject_name subject name to set
174 *
175 * \return 0 if subject name was parsed successfully, or
176 * a specific error code
177 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200178int mbedtls_x509write_csr_set_subject_name( mbedtls_x509write_csr *ctx,
Paul Bakker50dc8502013-10-28 21:19:10 +0100179 const char *subject_name );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200180
181/**
182 * \brief Set the key for a CSR (public key will be included,
183 * private key used to sign the CSR when writing it)
184 *
185 * \param ctx CSR context to use
186 * \param key Asymetric key to include
187 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200188void mbedtls_x509write_csr_set_key( mbedtls_x509write_csr *ctx, mbedtls_pk_context *key );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200189
190/**
191 * \brief Set the MD algorithm to use for the signature
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200192 * (e.g. MBEDTLS_MD_SHA1)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200193 *
194 * \param ctx CSR context to use
195 * \param md_alg MD algorithm to use
196 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197void mbedtls_x509write_csr_set_md_alg( mbedtls_x509write_csr *ctx, mbedtls_md_type_t md_alg );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200198
199/**
200 * \brief Set the Key Usage Extension flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200201 * (e.g. MBEDTLS_X509_KU_DIGITAL_SIGNATURE | MBEDTLS_X509_KU_KEY_CERT_SIGN)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200202 *
203 * \param ctx CSR context to use
204 * \param key_usage key usage flags to set
205 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200206 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200207 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200208int mbedtls_x509write_csr_set_key_usage( mbedtls_x509write_csr *ctx, unsigned char key_usage );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200209
210/**
211 * \brief Set the Netscape Cert Type flags
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200212 * (e.g. MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT | MBEDTLS_X509_NS_CERT_TYPE_EMAIL)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200213 *
214 * \param ctx CSR context to use
215 * \param ns_cert_type Netscape Cert Type flags to set
216 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200217 * \return 0 if successful, or MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200218 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200219int mbedtls_x509write_csr_set_ns_cert_type( mbedtls_x509write_csr *ctx,
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200220 unsigned char ns_cert_type );
221
222/**
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200223 * \brief Generic function to add to or replace an extension in the
224 * CSR
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200225 *
226 * \param ctx CSR context to use
227 * \param oid OID of the extension
228 * \param oid_len length of the OID
229 * \param val value of the extension OCTET STRING
230 * \param val_len length of the value data
231 *
Manuel Pégourié-Gonnard6a8ca332015-05-28 09:33:39 +0200232 * \return 0 if successful, or a MBEDTLS_ERR_X509_ALLOC_FAILED
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200233 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200234int mbedtls_x509write_csr_set_extension( mbedtls_x509write_csr *ctx,
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200235 const char *oid, size_t oid_len,
236 const unsigned char *val, size_t val_len );
237
238/**
239 * \brief Free the contents of a CSR context
240 *
241 * \param ctx CSR context to free
242 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200243void mbedtls_x509write_csr_free( mbedtls_x509write_csr *ctx );
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200244
245/**
246 * \brief Write a CSR (Certificate Signing Request) to a
247 * DER structure
248 * Note: data is written at the end of the buffer! Use the
249 * return value to determine where you should start
250 * using the buffer
251 *
252 * \param ctx CSR to write away
253 * \param buf buffer to write to
254 * \param size size of the buffer
255 * \param f_rng RNG function (for signature, see note)
256 * \param p_rng RNG parameter
257 *
258 * \return length of data written if successful, or a specific
259 * error code
260 *
261 * \note f_rng may be NULL if RSA is used for signature and the
262 * signature is made offline (otherwise f_rng is desirable
263 * for countermeasures against timing attacks).
264 * ECDSA signatures always require a non-NULL f_rng.
265 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200266int mbedtls_x509write_csr_der( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200267 int (*f_rng)(void *, unsigned char *, size_t),
268 void *p_rng );
269
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200270#if defined(MBEDTLS_PEM_WRITE_C)
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200271/**
272 * \brief Write a CSR (Certificate Signing Request) to a
273 * PEM string
274 *
275 * \param ctx CSR to write away
276 * \param buf buffer to write to
277 * \param size size of the buffer
278 * \param f_rng RNG function (for signature, see note)
279 * \param p_rng RNG parameter
280 *
Manuel Pégourié-Gonnard81abefd2015-05-29 12:53:47 +0200281 * \return 0 if successful, or a specific error code
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200282 *
283 * \note f_rng may be NULL if RSA is used for signature and the
284 * signature is made offline (otherwise f_rng is desirable
Andres AGcd153272016-10-04 12:06:50 +0100285 * for countermeasures against timing attacks).
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200286 * ECDSA signatures always require a non-NULL f_rng.
287 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200288int mbedtls_x509write_csr_pem( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200289 int (*f_rng)(void *, unsigned char *, size_t),
290 void *p_rng );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291#endif /* MBEDTLS_PEM_WRITE_C */
292#endif /* MBEDTLS_X509_CSR_WRITE_C */
Paul Bakker7c6b2c32013-09-16 13:49:26 +0200293
294#ifdef __cplusplus
295}
296#endif
297
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298#endif /* mbedtls_x509_csr.h */