mbed TLS v2.2.0
x509_csr.h
Go to the documentation of this file.
1 
23 #ifndef MBEDTLS_X509_CSR_H
24 #define MBEDTLS_X509_CSR_H
25 
26 #if !defined(MBEDTLS_CONFIG_FILE)
27 #include "config.h"
28 #else
29 #include MBEDTLS_CONFIG_FILE
30 #endif
31 
32 #include "x509.h"
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
50 typedef struct mbedtls_x509_csr
51 {
55  int version;
66  void *sig_opts;
67 }
69 
73 typedef struct mbedtls_x509write_csr
74 {
79 }
81 
82 #if defined(MBEDTLS_X509_CSR_PARSE_C)
83 
92 int mbedtls_x509_csr_parse_der( mbedtls_x509_csr *csr,
93  const unsigned char *buf, size_t buflen );
94 
105 int mbedtls_x509_csr_parse( mbedtls_x509_csr *csr, const unsigned char *buf, size_t buflen );
106 
107 #if defined(MBEDTLS_FS_IO)
108 
116 int mbedtls_x509_csr_parse_file( mbedtls_x509_csr *csr, const char *path );
117 #endif /* MBEDTLS_FS_IO */
118 
131 int mbedtls_x509_csr_info( char *buf, size_t size, const char *prefix,
132  const mbedtls_x509_csr *csr );
133 
139 void mbedtls_x509_csr_init( mbedtls_x509_csr *csr );
140 
146 void mbedtls_x509_csr_free( mbedtls_x509_csr *csr );
147 #endif /* MBEDTLS_X509_CSR_PARSE_C */
148 
149 /* \} name */
150 /* \} addtogroup x509_module */
151 
152 #if defined(MBEDTLS_X509_CSR_WRITE_C)
153 
158 void mbedtls_x509write_csr_init( mbedtls_x509write_csr *ctx );
159 
172 int mbedtls_x509write_csr_set_subject_name( mbedtls_x509write_csr *ctx,
173  const char *subject_name );
174 
182 void mbedtls_x509write_csr_set_key( mbedtls_x509write_csr *ctx, mbedtls_pk_context *key );
183 
191 void mbedtls_x509write_csr_set_md_alg( mbedtls_x509write_csr *ctx, mbedtls_md_type_t md_alg );
192 
202 int mbedtls_x509write_csr_set_key_usage( mbedtls_x509write_csr *ctx, unsigned char key_usage );
203 
213 int mbedtls_x509write_csr_set_ns_cert_type( mbedtls_x509write_csr *ctx,
214  unsigned char ns_cert_type );
215 
228 int mbedtls_x509write_csr_set_extension( mbedtls_x509write_csr *ctx,
229  const char *oid, size_t oid_len,
230  const unsigned char *val, size_t val_len );
231 
237 void mbedtls_x509write_csr_free( mbedtls_x509write_csr *ctx );
238 
260 int mbedtls_x509write_csr_der( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
261  int (*f_rng)(void *, unsigned char *, size_t),
262  void *p_rng );
263 
264 #if defined(MBEDTLS_PEM_WRITE_C)
265 
282 int mbedtls_x509write_csr_pem( mbedtls_x509write_csr *ctx, unsigned char *buf, size_t size,
283  int (*f_rng)(void *, unsigned char *, size_t),
284  void *p_rng );
285 #endif /* MBEDTLS_PEM_WRITE_C */
286 #endif /* MBEDTLS_X509_CSR_WRITE_C */
287 
288 #ifdef __cplusplus
289 }
290 #endif
291 
292 #endif /* mbedtls_x509_csr.h */
Certificate Signing Request (CSR) structure.
Definition: x509_csr.h:50
mbedtls_x509_buf sig
Definition: x509_csr.h:63
mbedtls_x509_name subject
The parsed subject data (named information object).
Definition: x509_csr.h:58
Public key container.
Definition: pk.h:126
mbedtls_pk_context * key
Definition: x509_csr.h:75
int version
CSR version (1=v1).
Definition: x509_csr.h:55
mbedtls_md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:64
mbedtls_md_type_t md_alg
Definition: x509_csr.h:77
mbedtls_pk_type_t
Public key types.
Definition: pk.h:74
Compatibility names (set of defines)
struct mbedtls_x509_csr mbedtls_x509_csr
Certificate Signing Request (CSR) structure.
mbedtls_asn1_named_data * extensions
Definition: x509_csr.h:78
mbedtls_pk_type_t sig_pk
Internal representation of the Public Key algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:65
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:150
mbedtls_x509_buf sig_oid
Definition: x509_csr.h:62
mbedtls_x509_buf raw
The raw CSR data (DER).
Definition: x509_csr.h:52
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:118
void * sig_opts
Signature options to be passed to mbedtls_pk_verify_ext(), e.g.
Definition: x509_csr.h:66
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:53
X.509 generic defines and structures.
mbedtls_x509_buf subject_raw
The raw subject data (DER).
Definition: x509_csr.h:57
Container for writing a CSR.
Definition: x509_csr.h:73
mbedtls_asn1_named_data * subject
Definition: x509_csr.h:76
mbedtls_md_type_t
Definition: md.h:39
mbedtls_pk_context pk
Container for the public key context.
Definition: x509_csr.h:60