PolarSSL v1.3.9
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#if !defined(POLARSSL_CONFIG_FILE)
31#include "config.h"
32#else
33#include POLARSSL_CONFIG_FILE
34#endif
35
36#include "x509.h"
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
54typedef struct _x509_csr
55{
59 int version;
70 void *sig_opts;
71}
73
77typedef struct _x509write_csr
78{
83}
85
86#if defined(POLARSSL_X509_CSR_PARSE_C)
97 const unsigned char *buf, size_t buflen );
98
108int x509_csr_parse( x509_csr *csr, const unsigned char *buf, size_t buflen );
109
110#if defined(POLARSSL_FS_IO)
119int x509_csr_parse_file( x509_csr *csr, const char *path );
120#endif /* POLARSSL_FS_IO */
121
134int x509_csr_info( char *buf, size_t size, const char *prefix,
135 const x509_csr *csr );
136
143
150#endif /* POLARSSL_X509_CSR_PARSE_C */
151
152/* \} name */
153/* \} addtogroup x509_module */
154
155#if defined(POLARSSL_X509_CSR_WRITE_C)
162
176 const char *subject_name );
177
186
195
205int x509write_csr_set_key_usage( x509write_csr *ctx, unsigned char key_usage );
206
217 unsigned char ns_cert_type );
218
232 const char *oid, size_t oid_len,
233 const unsigned char *val, size_t val_len );
234
241
263int x509write_csr_der( x509write_csr *ctx, unsigned char *buf, size_t size,
264 int (*f_rng)(void *, unsigned char *, size_t),
265 void *p_rng );
266
267#if defined(POLARSSL_PEM_WRITE_C)
285int x509write_csr_pem( x509write_csr *ctx, unsigned char *buf, size_t size,
286 int (*f_rng)(void *, unsigned char *, size_t),
287 void *p_rng );
288#endif /* POLARSSL_PEM_WRITE_C */
289#endif /* POLARSSL_X509_CSR_WRITE_C */
290
291#ifdef __cplusplus
292}
293#endif
294
295#endif /* x509_csr.h */
Configuration options (set of defines)
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.
pk_context pk
Container for the public key context.
Definition: x509_csr.h:64
x509_buf cri
The raw CertificateRequestInfo body (DER).
Definition: x509_csr.h:57
x509_buf sig_oid
Definition: x509_csr.h:66
int x509_csr_info(char *buf, size_t size, const char *prefix, const x509_csr *csr)
Returns an informational string about 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.
x509_buf raw
The raw CSR data (DER).
Definition: x509_csr.h:56
x509_name subject
The parsed subject data (named information object).
Definition: x509_csr.h:62
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)
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.
struct _x509write_csr x509write_csr
Container for writing a CSR.
int x509write_csr_set_ns_cert_type(x509write_csr *ctx, unsigned char ns_cert_type)
Set the Netscape Cert Type flags (e.g.
void x509_csr_free(x509_csr *csr)
Unallocate all CSR data.
asn1_named_data * subject
Definition: x509_csr.h:80
void x509write_csr_free(x509write_csr *ctx)
Free the contents of a CSR context.
pk_context * key
Definition: x509_csr.h:79
int x509write_csr_set_key_usage(x509write_csr *ctx, unsigned char key_usage)
Set the Key Usage Extension flags (e.g.
int x509_csr_parse_file(x509_csr *csr, const char *path)
Load a Certificate Signing Request (CSR)
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...
md_type_t md_alg
Definition: x509_csr.h:81
pk_type_t sig_pk
Internal representation of the Public Key algorithm of the signature algorithm, e....
Definition: x509_csr.h:69
struct _x509_csr x509_csr
Certificate Signing Request (CSR) structure.
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 x509_csr_parse_der(x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR) in DER format.
x509_buf sig
Definition: x509_csr.h:67
void x509_csr_init(x509_csr *csr)
Initialize a CSR.
int version
CSR version (1=v1).
Definition: x509_csr.h:59
void x509write_csr_init(x509write_csr *ctx)
Initialize a CSR context.
md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_csr.h:68
void * sig_opts
Signature options to be passed to pk_verify_ext(), e.g.
Definition: x509_csr.h:70
int x509_csr_parse(x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR), DER or PEM format.
x509_buf subject_raw
The raw subject data (DER).
Definition: x509_csr.h:61
asn1_named_data * extensions
Definition: x509_csr.h:82
md_type_t
Definition: md.h:51
pk_type_t
Public key types.
Definition: pk.h:95
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:125
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:157
Certificate Signing Request (CSR) structure.
Definition: x509_csr.h:55
Container for writing a CSR.
Definition: x509_csr.h:78
Public key container.
Definition: pk.h:195
X.509 generic defines and structures.