27 #ifndef POLARSSL_X509_CSR_H 28 #define POLARSSL_X509_CSR_H 30 #if !defined(POLARSSL_CONFIG_FILE) 33 #include POLARSSL_CONFIG_FILE 86 #if defined(POLARSSL_X509_CSR_PARSE_C) 97 const unsigned char *buf,
size_t buflen );
110 #if defined(POLARSSL_FS_IO) 134 int x509_csr_info(
char *buf,
size_t size,
const char *prefix,
155 #if defined(POLARSSL_X509_CSR_WRITE_C) 176 const char *subject_name );
217 unsigned char ns_cert_type );
232 const char *oid,
size_t oid_len,
233 const unsigned char *val,
size_t val_len );
264 int (*f_rng)(
void *,
unsigned char *,
size_t),
267 #if defined(POLARSSL_PEM_WRITE_C) 286 int (*f_rng)(
void *,
unsigned char *,
size_t),
void x509write_csr_free(x509write_csr *ctx)
Free the contents of a CSR context.
int x509_csr_parse_der(x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR) in DER format.
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.
x509_name subject
The parsed subject data (named information object).
void * sig_opts
Signature options to be passed to pk_verify_ext(), e.g.
x509_buf cri
The raw CertificateRequestInfo body (DER).
asn1_named_data * subject
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.
X.509 generic defines and structures.
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.g.
asn1_named_data * extensions
pk_context pk
Container for the public key context.
int x509_csr_parse(x509_csr *csr, const unsigned char *buf, size_t buflen)
Load a Certificate Signing Request (CSR), DER or PEM format.
Container for a sequence or list of 'named' ASN.1 data items.
Type-length-value structure that allows for ASN1 using DER.
x509_buf raw
The raw CSR data (DER).
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
CSR version (1=v1).
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.
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.
void x509_csr_init(x509_csr *csr)
Initialize a CSR.
Container for writing a CSR.
x509_buf subject_raw
The raw subject data (DER).