Mbed TLS v3.5.2
Loading...
Searching...
No Matches
x509_csr.h
Go to the documentation of this file.
1
6/*
7 * Copyright The Mbed TLS Contributors
8 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9 */
10#ifndef MBEDTLS_X509_CSR_H
11#define MBEDTLS_X509_CSR_H
13
14#include "mbedtls/build_info.h"
15
16#include "mbedtls/x509.h"
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
62
73
74#if defined(MBEDTLS_X509_CSR_PARSE_C)
91 const unsigned char *buf, size_t buflen);
92
109int mbedtls_x509_csr_parse(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen);
110
111#if defined(MBEDTLS_FS_IO)
123#endif /* MBEDTLS_FS_IO */
124
125#if !defined(MBEDTLS_X509_REMOVE_INFO)
138int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix,
139 const mbedtls_x509_csr *csr);
140#endif /* !MBEDTLS_X509_REMOVE_INFO */
141
148
155#endif /* MBEDTLS_X509_CSR_PARSE_C */
156
159#if defined(MBEDTLS_X509_CSR_WRITE_C)
166
180 const char *subject_name);
181
190
199
218
231 const mbedtls_x509_san_list *san_list);
232
243 unsigned char ns_cert_type);
244
259 const char *oid, size_t oid_len,
260 int critical,
261 const unsigned char *val, size_t val_len);
262
269
288int mbedtls_x509write_csr_der(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
289 int (*f_rng)(void *, unsigned char *, size_t),
290 void *p_rng);
291
292#if defined(MBEDTLS_PEM_WRITE_C)
307int mbedtls_x509write_csr_pem(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
308 int (*f_rng)(void *, unsigned char *, size_t),
309 void *p_rng);
310#endif /* MBEDTLS_PEM_WRITE_C */
311#endif /* MBEDTLS_X509_CSR_WRITE_C */
312
315#ifdef __cplusplus
316}
317#endif
318
319#endif /* mbedtls_x509_csr.h */
int mbedtls_x509write_csr_set_subject_alternative_name(mbedtls_x509write_csr *ctx, const mbedtls_x509_san_list *san_list)
Set Subject Alternative Name.
void mbedtls_x509write_csr_free(mbedtls_x509write_csr *ctx)
Free the contents of a CSR context.
int mbedtls_x509write_csr_set_ns_cert_type(mbedtls_x509write_csr *ctx, unsigned char ns_cert_type)
Set the Netscape Cert Type flags (e.g. MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT | MBEDTLS_X509_NS_CERT_TY...
void mbedtls_x509write_csr_set_md_alg(mbedtls_x509write_csr *ctx, mbedtls_md_type_t md_alg)
Set the MD algorithm to use for the signature (e.g. MBEDTLS_MD_SHA1)
int mbedtls_x509_csr_parse_der(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR) in DER format.
int mbedtls_x509_csr_parse(mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR), DER or PEM format.
int mbedtls_x509write_csr_pem(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Write a CSR (Certificate Signing Request) to a PEM string.
void mbedtls_x509write_csr_init(mbedtls_x509write_csr *ctx)
Initialize a CSR context.
int mbedtls_x509write_csr_set_subject_name(mbedtls_x509write_csr *ctx, const char *subject_name)
Set the subject name for a CSR Subject names should contain a comma-separated list of OID types and v...
void mbedtls_x509_csr_init(mbedtls_x509_csr *csr)
Initialize a CSR.
int mbedtls_x509write_csr_set_extension(mbedtls_x509write_csr *ctx, const char *oid, size_t oid_len, int critical, const unsigned char *val, size_t val_len)
Generic function to add to or replace an extension in the CSR.
struct mbedtls_x509write_csr mbedtls_x509write_csr
struct mbedtls_x509_csr mbedtls_x509_csr
void mbedtls_x509_csr_free(mbedtls_x509_csr *csr)
Unallocate all CSR data.
void mbedtls_x509write_csr_set_key(mbedtls_x509write_csr *ctx, mbedtls_pk_context *key)
Set the key for a CSR (public key will be included, private key used to sign the CSR when writing it)
int mbedtls_x509write_csr_set_key_usage(mbedtls_x509write_csr *ctx, unsigned char key_usage)
Set the Key Usage Extension flags (e.g. MBEDTLS_X509_KU_DIGITAL_SIGNATURE | MBEDTLS_X509_KU_KEY_CERT_...
int mbedtls_x509write_csr_der(mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Write a CSR (Certificate Signing Request) to a DER structure Note: data is written at the end of the ...
int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix, const mbedtls_x509_csr *csr)
Returns an informational string about the CSR.
int mbedtls_x509_csr_parse_file(mbedtls_x509_csr *csr, const char *path)
Load a Certificate Signing Request (CSR)
Build-time configuration info.
mbedtls_md_type_t
Supported message digests.
Definition md.h:161
mbedtls_pk_type_t
Public key types.
Definition pk.h:73
Macro wrapper for struct's members.
#define MBEDTLS_PRIVATE(member)
Public key container.
Definition pk.h:227
mbedtls_x509_name subject
Definition x509_csr.h:45
mbedtls_x509_sequence subject_alt_names
Definition x509_csr.h:51
unsigned char ns_cert_type
Definition x509_csr.h:50
mbedtls_x509_buf sig_oid
Definition x509_csr.h:55
mbedtls_x509_buf cri
Definition x509_csr.h:40
mbedtls_pk_context pk
Definition x509_csr.h:47
unsigned int key_usage
Definition x509_csr.h:49
mbedtls_x509_buf raw
Definition x509_csr.h:39
mbedtls_x509_buf subject_raw
Definition x509_csr.h:44
X.509 generic defines and structures.