summaryrefslogtreecommitdiff
path: root/lib/libcrypto/man/X509_REQ_new.3
blob: 26460048d3ae1da5371d1e6a1bdcaa6af72bc1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.\"	$OpenBSD: X509_REQ_new.3,v 1.6 2019/06/06 01:06:59 schwarze Exp $
.\"
.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
.\"
.\" 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: June 6 2019 $
.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_check_private_key 3 ,
.Xr X509_REQ_digest 3 ,
.Xr X509_REQ_get0_signature 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 .