mbed TLS v2.6.0
x509_csr.h
Go to the documentation of this file.
1 
25 #ifndef MBEDTLS_X509_CSR_H
26 #define MBEDTLS_X509_CSR_H
27 
28 #if !defined(MBEDTLS_CONFIG_FILE)
29 #include "config.h"
30 #else
31 #include MBEDTLS_CONFIG_FILE
32 #endif
33 
34 #include "x509.h"
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
52 typedef struct mbedtls_x509_csr
53 {
57  int version;
68  void *sig_opts;
69 }
71 
75 typedef struct mbedtls_x509write_csr
76 {
81 }
83 
84 #if defined(MBEDTLS_X509_CSR_PARSE_C)
85 
97  const unsigned char *buf, size_t buflen );
98 
111 int mbedtls_x509_csr_parse( mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen );
112 
113 #if defined(MBEDTLS_FS_IO)
114 
124 int mbedtls_x509_csr_parse_file( mbedtls_x509_csr *csr, const char *path );
125 #endif /* MBEDTLS_FS_IO */
126 
139 int mbedtls_x509_csr_info( char *buf, size_t size, const char *prefix,
140  const mbedtls_x509_csr *csr );
141 
148 
155 #endif /* MBEDTLS_X509_CSR_PARSE_C */
156 
157 /* \} name */
158 /* \} addtogroup x509_module */
159 
160 #if defined(MBEDTLS_X509_CSR_WRITE_C)
161 
167 
181  const char *subject_name );
182 
191 
200 
210 int mbedtls_x509write_csr_set_key_usage( mbedtls_x509write_csr *ctx, unsigned char key_usage );
211 
222  unsigned char ns_cert_type );
223 
237  const char *oid, size_t oid_len,
238  const unsigned char *val, size_t val_len );
239 
246 
268 int mbedtls_x509write_csr_der( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
269  int (*f_rng)(void *, unsigned char *, size_t),
270  void *p_rng );
271 
272 #if defined(MBEDTLS_PEM_WRITE_C)
273 
290 int mbedtls_x509write_csr_pem( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
291  int (*f_rng)(void *, unsigned char *, size_t),
292  void *p_rng );
293 #endif /* MBEDTLS_PEM_WRITE_C */
294 #endif /* MBEDTLS_X509_CSR_WRITE_C */
295 
296 #ifdef __cplusplus
297 }
298 #endif
299 
300 #endif /* mbedtls_x509_csr.h */
Certificate Signing Request (CSR) structure.
Definition: x509_csr.h:52
mbedtls_x509_buf sig
Definition: x509_csr.h:65
mbedtls_x509_name subject
The parsed subject data (named information object).
Definition: x509_csr.h:60
void mbedtls_x509write_csr_free(mbedtls_x509write_csr *ctx)
Free the contents of a CSR context.
Public key container.
Definition: pk.h:128
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...
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_set_ns_cert_type(mbedtls_x509write_csr *ctx, unsigned char ns_cert_type)
Set the Netscape Cert Type flags (e.g.
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_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 ...
mbedtls_pk_context * key
Definition: x509_csr.h:77
int version
CSR version (1=v1).
Definition: x509_csr.h:57
mbedtls_md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:66
int mbedtls_x509_csr_parse_file(mbedtls_x509_csr *csr, const char *path)
Load a Certificate Signing Request (CSR)
void mbedtls_x509write_csr_init(mbedtls_x509write_csr *ctx)
Initialize a CSR context.
void mbedtls_x509_csr_free(mbedtls_x509_csr *csr)
Unallocate all CSR data.
int mbedtls_x509write_csr_set_key_usage(mbedtls_x509write_csr *ctx, unsigned char key_usage)
Set the Key Usage Extension flags (e.g.
mbedtls_md_type_t md_alg
Definition: x509_csr.h:79
mbedtls_pk_type_t
Public key types.
Definition: pk.h:76
Configuration options (set of defines)
struct mbedtls_x509_csr mbedtls_x509_csr
Certificate Signing Request (CSR) structure.
mbedtls_asn1_named_data * extensions
Definition: x509_csr.h:80
int mbedtls_x509write_csr_set_extension(mbedtls_x509write_csr *ctx, const char *oid, size_t oid_len, const unsigned char *val, size_t val_len)
Generic function to add to or replace an extension in the CSR.
mbedtls_pk_type_t sig_pk
Internal representation of the Public Key algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:67
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:152
mbedtls_x509_buf sig_oid
Definition: x509_csr.h:64
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.
mbedtls_x509_buf raw
The raw CSR data (DER).
Definition: x509_csr.h:54
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:120
void * sig_opts
Signature options to be passed to mbedtls_pk_verify_ext(), e.g.
Definition: x509_csr.h:68
void mbedtls_x509_csr_init(mbedtls_x509_csr *csr)
Initialize a CSR.
struct mbedtls_x509write_csr mbedtls_x509write_csr
Container for writing a CSR.
mbedtls_x509_buf cri
The raw CertificateRequestInfo body (DER).
Definition: x509_csr.h:55
X.509 generic defines and structures.
mbedtls_x509_buf subject_raw
The raw subject data (DER).
Definition: x509_csr.h:59
Container for writing a CSR.
Definition: x509_csr.h:75
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.
mbedtls_asn1_named_data * subject
Definition: x509_csr.h:78
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_type_t
Definition: md.h:41
mbedtls_pk_context pk
Container for the public key context.
Definition: x509_csr.h:62
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.