.\" $OpenBSD: X509_REQ_new.3,v 1.5 2018/07/29 20:29:32 tb Exp $ .\" .\" Copyright (c) 2016 Ingo Schwarze .\" .\" Permission to use, copy, modify, and distribute this software for any .\" purpose with or without fee is hereby granted, provided that the above .\" copyright notice and this permission notice appear in all copies. .\" .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .Dd $Mdocdate: July 29 2018 $ .Dt X509_REQ_NEW 3 .Os .Sh NAME .Nm X509_REQ_new , .Nm X509_REQ_free , .Nm X509_REQ_INFO_new , .Nm X509_REQ_INFO_free .Nd PKCS#10 certification requests .Sh SYNOPSIS .In openssl/x509.h .Ft X509_REQ * .Fn X509_REQ_new void .Ft void .Fn X509_REQ_free "X509_REQ *req" .Ft X509_REQ_INFO * .Fn X509_REQ_INFO_new void .Ft void .Fn X509_REQ_INFO_free "X509_REQ_INFO *req_info" .Sh DESCRIPTION .Fn X509_REQ_new allocates and initializes an empty .Vt X509_REQ object, representing an ASN.1 .Vt CertificationRequest structure defined in RFC 2986 section 4.2. It can hold a pointer to an .Vt X509_REQ_INFO object discussed below together with a cryptographic signature and information about the signature algorithm used. .Fn X509_REQ_free frees .Fa req . If .Fa req is a .Dv NULL pointer, no action occurs. .Pp .Fn X509_REQ_INFO_new allocates and initializes an empty .Vt X509_REQ_INFO object, representing an ASN.1 .Vt CertificationRequestInfo structure defined in RFC 2986 section 4.1. It is used inside the .Vt X509_REQ object and can hold the subject and the public key of the requested certificate and additional attributes. .Fn X509_REQ_INFO_free frees .Fa req_info . If .Fa req_info is a .Dv NULL pointer, no action occurs. .Sh RETURN VALUES .Fn X509_REQ_new and .Fn X509_REQ_INFO_new return the new .Vt X509_REQ or .Vt X509_REQ_INFO object, respectively, or .Dv NULL if an error occurs. .Sh SEE ALSO .Xr d2i_X509_REQ 3 , .Xr PEM_read_X509_REQ 3 , .Xr X509_new 3 , .Xr X509_REQ_get_pubkey 3 , .Xr X509_REQ_get_subject_name 3 , .Xr X509_REQ_get_version 3 , .Xr X509_REQ_sign 3 .Sh STANDARDS RFC 2986: PKCS #10: Certification Request Syntax Specification .Sh HISTORY .Fn X509_REQ_new , .Fn X509_REQ_free , .Fn X509_REQ_INFO_new , and .Fn X509_REQ_INFO_free first appeared in SSLeay 0.4.4 and have been available since .Ox 2.4 .