Skip to content

Commit cdc51f0

Browse files
davidbensamuel40791765
authored andcommitted
Merge <openssl/x509v3.h> into <openssl/x509.h>
The headers moved from x509v3 to x509 was redone to avoid unintentionally taking changes we've skipped and keep AWS-LC specific changes. Change-Id: I53147d1f96d1f99909f5c8bda00cefb088677a0e Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/64138 Reviewed-by: Bob Beck <[email protected]> Commit-Queue: David Benjamin <[email protected]> (cherry picked from commit 58906eab928fe849a55cb846fcd84fb8b64773ed)
1 parent ae49b31 commit cdc51f0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1127
-1154
lines changed

crypto/decrepit/x509/x509_decrepit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
1313
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
1414

15-
#include <openssl/x509v3.h>
15+
#include <openssl/x509.h>
1616

1717
#include <assert.h>
1818

crypto/x509/asn1_gen.c

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
#include <openssl/bytestring.h>
6666
#include <openssl/err.h>
6767
#include <openssl/obj.h>
68-
#include <openssl/x509v3.h>
6968

7069
#include "../conf/internal.h"
7170
#include "../internal.h"

crypto/x509/internal.h

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
#include <openssl/base.h>
6363
#include <openssl/evp.h>
6464
#include <openssl/x509.h>
65-
#include <openssl/x509v3.h>
6665

6766
#include "../asn1/internal.h"
6867

crypto/x509/policy.c

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include <openssl/mem.h>
2020
#include <openssl/obj.h>
2121
#include <openssl/stack.h>
22-
#include <openssl/x509v3.h>
2322

2423
#include "../internal.h"
2524
#include "internal.h"

crypto/x509/t_crl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#include <openssl/mem.h>
6262
#include <openssl/obj.h>
6363
#include <openssl/x509.h>
64-
#include <openssl/x509v3.h>
64+
6565

6666
int X509_CRL_print_fp(FILE *fp, X509_CRL *x) {
6767
BIO *b = BIO_new_fp(fp, BIO_NOCLOSE);

crypto/x509/t_req.c

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
#include <openssl/err.h>
6363
#include <openssl/objects.h>
6464
#include <openssl/x509.h>
65-
#include <openssl/x509v3.h>
6665

6766
#include "internal.h"
6867

crypto/x509/t_x509.c

-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464
#include <openssl/mem.h>
6565
#include <openssl/obj.h>
6666
#include <openssl/x509.h>
67-
#include <openssl/x509v3.h>
6867

6968
#include "internal.h"
7069

crypto/x509/tab_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
#include <gtest/gtest.h>
6262

63-
#include <openssl/x509v3.h>
63+
#include <openssl/x509.h>
6464

6565
#include "../internal.h"
6666
#include "ext_dat.h"

crypto/x509/v3_akey.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#include <openssl/err.h>
6464
#include <openssl/mem.h>
6565
#include <openssl/obj.h>
66-
#include <openssl/x509v3.h>
66+
#include <openssl/x509.h>
6767

6868
#include "internal.h"
6969

crypto/x509/v3_akeya.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#include <openssl/asn1.h>
6060
#include <openssl/asn1t.h>
6161
#include <openssl/conf.h>
62-
#include <openssl/x509v3.h>
62+
#include <openssl/x509.h>
6363

6464

6565
ASN1_SEQUENCE(AUTHORITY_KEYID) = {

crypto/x509/v3_alt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#include <openssl/err.h>
6262
#include <openssl/mem.h>
6363
#include <openssl/obj.h>
64-
#include <openssl/x509v3.h>
64+
#include <openssl/x509.h>
6565

6666
#include "internal.h"
6767

crypto/x509/v3_bcons.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#include <openssl/conf.h>
6363
#include <openssl/err.h>
6464
#include <openssl/obj.h>
65-
#include <openssl/x509v3.h>
65+
#include <openssl/x509.h>
6666

6767
#include "internal.h"
6868

crypto/x509/v3_bitst.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#include <openssl/conf.h>
6161
#include <openssl/err.h>
6262
#include <openssl/obj.h>
63-
#include <openssl/x509v3.h>
63+
#include <openssl/x509.h>
6464

6565
#include "internal.h"
6666

crypto/x509/v3_conf.c

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
#include <openssl/mem.h>
6767
#include <openssl/obj.h>
6868
#include <openssl/x509.h>
69-
#include <openssl/x509v3.h>
7069

7170
#include "../internal.h"
7271
#include "internal.h"

crypto/x509/v3_cpols.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
#include <openssl/mem.h>
6767
#include <openssl/obj.h>
6868
#include <openssl/stack.h>
69-
#include <openssl/x509v3.h>
69+
#include <openssl/x509.h>
7070

7171
#include "internal.h"
7272

crypto/x509/v3_crld.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#include <openssl/err.h>
6464
#include <openssl/mem.h>
6565
#include <openssl/obj.h>
66-
#include <openssl/x509v3.h>
66+
#include <openssl/x509.h>
6767

6868
#include "internal.h"
6969

crypto/x509/v3_enum.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
#include <openssl/mem.h>
6060
#include <openssl/obj.h>
61-
#include <openssl/x509v3.h>
61+
#include <openssl/x509.h>
6262

6363
#include "internal.h"
6464

crypto/x509/v3_extku.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#include <openssl/conf.h>
6161
#include <openssl/err.h>
6262
#include <openssl/obj.h>
63-
#include <openssl/x509v3.h>
63+
#include <openssl/x509.h>
6464

6565
#include "internal.h"
6666

crypto/x509/v3_genn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#include <openssl/asn1t.h>
6060
#include <openssl/conf.h>
6161
#include <openssl/obj.h>
62-
#include <openssl/x509v3.h>
62+
#include <openssl/x509.h>
6363

6464
#include "internal.h"
6565

crypto/x509/v3_ia5.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
#include <openssl/err.h>
6565
#include <openssl/mem.h>
6666
#include <openssl/obj.h>
67-
#include <openssl/x509v3.h>
67+
#include <openssl/x509.h>
6868

6969
#include "../internal.h"
7070

crypto/x509/v3_info.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
#include <openssl/err.h>
6666
#include <openssl/mem.h>
6767
#include <openssl/obj.h>
68-
#include <openssl/x509v3.h>
68+
#include <openssl/x509.h>
6969

7070
static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_INFO_ACCESS(
7171
const X509V3_EXT_METHOD *method, void *ext, STACK_OF(CONF_VALUE) *ret);

crypto/x509/v3_int.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#include <stdio.h>
5858

5959
#include <openssl/obj.h>
60-
#include <openssl/x509v3.h>
60+
#include <openssl/x509.h>
6161

6262

6363
static char *i2s_ASN1_INTEGER_cb(const X509V3_EXT_METHOD *method, void *ext) {

crypto/x509/v3_lib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
#include <openssl/err.h>
6565
#include <openssl/mem.h>
6666
#include <openssl/obj.h>
67-
#include <openssl/x509v3.h>
67+
#include <openssl/x509.h>
6868

6969
#include "internal.h"
7070

crypto/x509/v3_ncons.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#include <openssl/err.h>
6363
#include <openssl/mem.h>
6464
#include <openssl/obj.h>
65-
#include <openssl/x509v3.h>
65+
#include <openssl/x509.h>
6666

6767
#include "../internal.h"
6868
#include "internal.h"

crypto/x509/v3_ocsp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#include <string.h>
1111

12-
#include <openssl/x509v3.h>
12+
#include <openssl/x509.h>
1313

1414
#include <openssl/asn1.h>
1515
#include <openssl/bio.h>

crypto/x509/v3_pcons.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#include <openssl/conf.h>
6363
#include <openssl/err.h>
6464
#include <openssl/obj.h>
65-
#include <openssl/x509v3.h>
65+
#include <openssl/x509.h>
6666

6767
#include "internal.h"
6868

crypto/x509/v3_pmaps.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#include <openssl/conf.h>
6161
#include <openssl/err.h>
6262
#include <openssl/obj.h>
63-
#include <openssl/x509v3.h>
63+
#include <openssl/x509.h>
6464

6565
#include "internal.h"
6666

crypto/x509/v3_prn.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#include <openssl/bio.h>
6262
#include <openssl/conf.h>
6363
#include <openssl/mem.h>
64-
#include <openssl/x509v3.h>
64+
#include <openssl/x509.h>
6565

6666
// Extension printing routines
6767

crypto/x509/v3_purp.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#include <openssl/mem.h>
6464
#include <openssl/obj.h>
6565
#include <openssl/thread.h>
66-
#include <openssl/x509v3.h>
66+
#include <openssl/x509.h>
6767

6868
#include "../internal.h"
6969
#include "internal.h"

crypto/x509/v3_skey.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#include <openssl/err.h>
6363
#include <openssl/obj.h>
6464
#include <openssl/mem.h>
65-
#include <openssl/x509v3.h>
65+
#include <openssl/x509.h>
6666

6767
#include "internal.h"
6868

crypto/x509/v3_utl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
#include <openssl/err.h>
6868
#include <openssl/mem.h>
6969
#include <openssl/obj.h>
70-
#include <openssl/x509v3.h>
70+
#include <openssl/x509.h>
7171

7272
#include "../conf/internal.h"
7373
#include "../internal.h"

crypto/x509/x509_cmp.c

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
#include <openssl/obj.h>
6464
#include <openssl/stack.h>
6565
#include <openssl/x509.h>
66-
#include <openssl/x509v3.h>
6766

6867
#include "../internal.h"
6968
#include "internal.h"

crypto/x509/x509_ext.c

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
#include <openssl/obj.h>
6060
#include <openssl/stack.h>
6161
#include <openssl/x509.h>
62-
#include <openssl/x509v3.h>
6362

6463
#include "internal.h"
6564

crypto/x509/x509_lu.c

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <openssl/mem.h>
6161
#include <openssl/thread.h>
6262
#include <openssl/x509.h>
63-
#include <openssl/x509v3.h>
6463

6564
#include "../internal.h"
6665
#include "internal.h"

crypto/x509/x509_test.cc

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#include <openssl/pool.h>
3333
#include <openssl/rand.h>
3434
#include <openssl/x509.h>
35-
#include <openssl/x509v3.h>
3635

3736
#include "internal.h"
3837
#include "../evp_extra/internal.h"

crypto/x509/x509_trs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#include <openssl/err.h>
5858
#include <openssl/mem.h>
5959
#include <openssl/obj.h>
60-
#include <openssl/x509v3.h>
60+
#include <openssl/x509.h>
6161

6262
#include "internal.h"
6363

crypto/x509/x509_v3.c

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <openssl/obj.h>
6161
#include <openssl/stack.h>
6262
#include <openssl/x509.h>
63-
#include <openssl/x509v3.h>
6463

6564
#include "internal.h"
6665

crypto/x509/x509_vfy.c

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
#include <openssl/obj.h>
6666
#include <openssl/thread.h>
6767
#include <openssl/x509.h>
68-
#include <openssl/x509v3.h>
6968

7069
#include "../internal.h"
7170
#include "internal.h"

crypto/x509/x509_vpm.c

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
#include <openssl/obj.h>
6161
#include <openssl/stack.h>
6262
#include <openssl/x509.h>
63-
#include <openssl/x509v3.h>
6463

6564
#include "../internal.h"
6665
#include "internal.h"

crypto/x509/x_crl.c

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
#include <openssl/stack.h>
6464
#include <openssl/thread.h>
6565
#include <openssl/x509.h>
66-
#include <openssl/x509v3.h>
6766

6867
#include <assert.h>
6968

crypto/x509/x_x509.c

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
#include <openssl/pool.h>
6666
#include <openssl/thread.h>
6767
#include <openssl/x509.h>
68-
#include <openssl/x509v3.h>
6968

7069
#include "../asn1/internal.h"
7170
#include "../internal.h"

fuzz/conf.cc

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include <openssl/bio.h>
1616
#include <openssl/conf.h>
1717
#include <openssl/x509.h>
18-
#include <openssl/x509v3.h>
1918

2019
#include <algorithm>
2120

0 commit comments

Comments
 (0)