PolarSSL v1.3.2
x509_csr.h
Go to the documentation of this file.
1 
27 #ifndef POLARSSL_X509_CSR_H
28 #define POLARSSL_X509_CSR_H
29 
30 #include "config.h"
31 
32 #include "x509.h"
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
50 typedef struct _x509_csr
51 {
55  int version;
56 
66 }
67 x509_csr;
68 
72 typedef struct _x509write_csr
73 {
78 }
80 
81 #if defined(POLARSSL_X509_CSR_PARSE_C)
82 
91 int x509_csr_parse( x509_csr *csr, const unsigned char *buf, size_t buflen );
92 
93 #if defined(POLARSSL_FS_IO)
94 
102 int x509_csr_parse_file( x509_csr *csr, const char *path );
103 #endif /* POLARSSL_FS_IO */
104 
117 int x509_csr_info( char *buf, size_t size, const char *prefix,
118  const x509_csr *csr );
119 
125 void x509_csr_init( x509_csr *csr );
126 
132 void x509_csr_free( x509_csr *csr );
133 #endif /* POLARSSL_X509_CSR_PARSE_C */
134 
135 /* \} name */
136 /* \} addtogroup x509_module */
137 
138 #if defined(POLARSSL_X509_CSR_WRITE_C)
139 
144 void x509write_csr_init( x509write_csr *ctx );
145 
159  const char *subject_name );
160 
169 
178 
188 int x509write_csr_set_key_usage( x509write_csr *ctx, unsigned char key_usage );
189 
200  unsigned char ns_cert_type );
201 
214  const char *oid, size_t oid_len,
215  const unsigned char *val, size_t val_len );
216 
222 void x509write_csr_free( x509write_csr *ctx );
223 
245 int x509write_csr_der( x509write_csr *ctx, unsigned char *buf, size_t size,
246  int (*f_rng)(void *, unsigned char *, size_t),
247  void *p_rng );
248 
249 #if defined(POLARSSL_PEM_WRITE_C)
250 
267 int x509write_csr_pem( x509write_csr *ctx, unsigned char *buf, size_t size,
268  int (*f_rng)(void *, unsigned char *, size_t),
269  void *p_rng );
270 #endif /* POLARSSL_PEM_WRITE_C */
271 #endif /* POLARSSL_X509_CSR_WRITE_C */
272 
273 #ifdef __cplusplus
274 }
275 #endif
276 
277 #endif /* x509_csr.h */
void x509write_csr_free(x509write_csr *ctx)
Free the contents of a CSR context.
int x509write_csr_der(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 x509write_csr_set_extension(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.
void x509write_csr_set_md_alg(x509write_csr *ctx, md_type_t md_alg)
Set the MD algorithm to use for the signature (e.g.
int x509write_csr_set_ns_cert_type(x509write_csr *ctx, unsigned char ns_cert_type)
Set the Netscape Cert Type flags (e.g.
Configuration options (set of defines)
int x509write_csr_pem(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.
int x509write_csr_set_key_usage(x509write_csr *ctx, unsigned char key_usage)
Set the Key Usage Extension flags (e.g.
md_type_t md_alg
Definition: x509_csr.h:76
x509_name subject
The parsed subject data (named information object).
Definition: x509_csr.h:58
md_type_t
Definition: md.h:51
x509_buf cri
The raw CertificateRequestInfo body (DER).
Definition: x509_csr.h:53
x509_buf sig_oid
Definition: x509_csr.h:62
asn1_named_data * subject
Definition: x509_csr.h:75
x509_buf sig
Definition: x509_csr.h:63
void x509_csr_free(x509_csr *csr)
Unallocate all CSR data.
void x509write_csr_init(x509write_csr *ctx)
Initialize a CSR context.
pk_type_t
Public key types.
Definition: pk.h:90
X.509 generic defines and structures.
pk_context * key
Definition: x509_csr.h:74
void x509write_csr_set_key(x509write_csr *ctx, pk_context *key)
Set the key for a CSR (public key will be included, private key used to sign the CSR when writing it)...
struct _x509write_csr x509write_csr
Container for writing a CSR.
pk_type_t sig_pk
< Internal representation of the Public Key algorithm of the signature algorithm, e...
Definition: x509_csr.h:65
asn1_named_data * extensions
Definition: x509_csr.h:77
pk_context pk
Container for the public key context.
Definition: x509_csr.h:60
int x509_csr_parse(x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR)
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:148
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:116
x509_buf raw
The raw CSR data (DER).
Definition: x509_csr.h:52
struct _x509_csr x509_csr
Certificate Signing Request (CSR) structure.
int x509_csr_info(char *buf, size_t size, const char *prefix, const x509_csr *csr)
Returns an informational string about the CSR.
int version
Definition: x509_csr.h:55
int x509write_csr_set_subject_name(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...
Certificate Signing Request (CSR) structure.
Definition: x509_csr.h:50
int x509_csr_parse_file(x509_csr *csr, const char *path)
Load a Certificate Signing Request (CSR)
md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:64
void x509_csr_init(x509_csr *csr)
Initialize a CSR.
Public key container.
Definition: pk.h:177
Container for writing a CSR.
Definition: x509_csr.h:72
x509_buf subject_raw
The raw subject data (DER).
Definition: x509_csr.h:57