forked from electron/electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Enable X509_V_FLAG_TRUSTED_FIRST flag in BoringSSL (electron#31213)
Fixes: electron#31212 Signed-off-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
patches/boringssl/enable_x509_v_flag_trusted_first_flag.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Juan Cruz Viotti <[email protected]> | ||
Date: Thu, 30 Sep 2021 13:39:23 -0400 | ||
Subject: Enable X509_V_FLAG_TRUSTED_FIRST flag | ||
|
||
Signed-off-by: Juan Cruz Viotti <[email protected]> | ||
|
||
diff --git a/crypto/x509/x509_vpm.c b/crypto/x509/x509_vpm.c | ||
index 5a881d64c30076404cc800fff9e943bb0b30d2ac..29d5341efc8eb7ae6f90bdde5a8032e99f75c98e 100644 | ||
--- a/crypto/x509/x509_vpm.c | ||
+++ b/crypto/x509/x509_vpm.c | ||
@@ -528,7 +528,7 @@ static const X509_VERIFY_PARAM default_table[] = { | ||
(char *)"default", /* X509 default parameters */ | ||
0, /* Check time */ | ||
0, /* internal flags */ | ||
- 0, /* flags */ | ||
+ X509_V_FLAG_TRUSTED_FIRST, /* flags */ | ||
0, /* purpose */ | ||
0, /* trust */ | ||
100, /* depth */ |