rand: remove unimplemented librandom stub code
[openssl.git] / doc / man3 / X509_get_version.pod
1 =pod
2
3 =head1 NAME
4
5 X509_get_version, X509_set_version, X509_REQ_get_version, X509_REQ_set_version,
6 X509_ACERT_get_version, X509_ACERT_set_version, X509_CRL_get_version,
7 X509_CRL_set_version - get or set certificate,
8 certificate request or CRL version
9
10 =head1 SYNOPSIS
11
12  #include <openssl/x509.h>
13
14  long X509_get_version(const X509 *x);
15  int X509_set_version(X509 *x, long version);
16
17  long X509_REQ_get_version(const X509_REQ *req);
18  int X509_REQ_set_version(X509_REQ *x, long version);
19
20  long X509_CRL_get_version(const X509_CRL *crl);
21  int X509_CRL_set_version(X509_CRL *x, long version);
22
23  #include <openssl/x509_acert.h>
24
25  int X509_ACERT_set_version(X509_ACERT *x, long version);
26  long X509_ACERT_get_version(const X509_ACERT *x);
27
28 =head1 DESCRIPTION
29
30 X509_get_version() returns the numerical value of the version field of
31 certificate I<x>. These correspond to the constants B<X509_VERSION_1>,
32 B<X509_VERSION_2>, and B<X509_VERSION_3>. Note: the values of these constants
33 are defined by standards (X.509 et al) to be one less than the certificate
34 version. So B<X509_VERSION_3> has value 2 and B<X509_VERSION_1> has value 0.
35
36 X509_set_version() sets the numerical value of the version field of certificate
37 I<x> to I<version>.
38
39 Similarly X509_REQ_get_version(), X509_REQ_set_version(),
40 X509_ACERT_get_version(), X509_ACERT_set_version(),
41 X509_CRL_get_version() and X509_CRL_set_version() get and set the version
42 number of certificate requests and CRLs. They use constants
43 B<X509_REQ_VERSION_1>, B<X509_ACERT_VERSION_2>, B<X509_CRL_VERSION_1>,
44 and B<X509_CRL_VERSION_2>.
45
46 =head1 NOTES
47
48 The version field of certificates, certificate requests and CRLs has a
49 DEFAULT value of B<v1(0)> meaning the field should be omitted for version
50 1. This is handled transparently by these functions.
51
52 =head1 RETURN VALUES
53
54 X509_get_version(), X509_REQ_get_version() and X509_CRL_get_version()
55 return the numerical value of the version field.
56
57 X509_set_version(), X509_REQ_set_version() and X509_CRL_set_version()
58 return 1 for success and 0 for failure.
59
60 =head1 SEE ALSO
61
62 L<d2i_X509(3)>,
63 L<ERR_get_error(3)>,
64 L<X509_CRL_get0_by_serial(3)>,
65 L<X509_get0_signature(3)>,
66 L<X509_get_ext_d2i(3)>,
67 L<X509_get_extension_flags(3)>,
68 L<X509_get_pubkey(3)>,
69 L<X509_get_subject_name(3)>,
70 L<X509_NAME_add_entry_by_txt(3)>,
71 L<X509_NAME_ENTRY_get_object(3)>,
72 L<X509_NAME_get_index_by_NID(3)>,
73 L<X509_NAME_print_ex(3)>,
74 L<X509_new(3)>,
75 L<X509_sign(3)>,
76 L<X509V3_get_d2i(3)>,
77 L<X509_verify_cert(3)>
78
79 =head1 HISTORY
80
81 X509_get_version(), X509_REQ_get_version() and X509_CRL_get_version() are
82 functions in OpenSSL 1.1.0, in previous versions they were macros.
83
84 =head1 COPYRIGHT
85
86 Copyright 2015-2023 The OpenSSL Project Authors. All Rights Reserved.
87
88 Licensed under the Apache License 2.0 (the "License").  You may not use
89 this file except in compliance with the License.  You can obtain a copy
90 in the file LICENSE in the source distribution or at
91 L<https://www.openssl.org/source/license.html>.
92
93 =cut