Update Mozilla's CA and expiration timestamp#11
Open
rchouinard wants to merge 3 commits intoEvanDotPro:masterfrom
rchouinard:mxr-cert-update
Open
Update Mozilla's CA and expiration timestamp#11rchouinard wants to merge 3 commits intoEvanDotPro:masterfrom rchouinard:mxr-cert-update
rchouinard wants to merge 3 commits intoEvanDotPro:masterfrom
rchouinard:mxr-cert-update
Conversation
Mozilla used DigiCert as their new CA for mxr.mozilla.org, replacing Equifax. This commit replaces the bundled Equifax certificate with DigiCert's, as well as updating the epiration timestamp for mxr.mozilla.org's new certificate. The public key pin remains the same. This commit also adds PHP 5.6 compatibility by replacing the context option CN_match with peer_name for PHP 5.6 environments.
Test were failing due to an infinite loop in the chunk decoder method, which continued to grow a string until all memory was exhausted. This commit fixes that issue, as well as fixing a test case overlooked in the last commit.
Travis builds are now failing due to the test/bootstrap.php file. The quickest way to get the test suite to pass is to only scan the src/ directory, which is really the most important directory to keep up to standards anyway.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mozilla used DigiCert as their new CA for mxr.mozilla.org, replacing
Equifax. This commit replaces the bundled Equifax certificate with
DigiCert's, as well as updating the epiration timestamp for
mxr.mozilla.org's new certificate. The public key pin remains the same.
This commit also adds PHP 5.6 compatibility by replacing the context
option CN_match with peer_name for PHP 5.6 environments.