forked from google/boringssl
-
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.
This has no callers, and seems to be practically unusable. The only way to set an X509_CRL_METHOD is X509_CRL_set_default_method, which is not thread-safe and globally affects the CRL implementation across the application. The comment says it's to handle large CRLs, so lots of processes don't have to store the same CRL in memory. As far as I can tell, X509_CRL_METHOD cannot be used to help with this. It doesn't swap out storage of the CRL, just signature verification and lookup into it. But by the time we call into X509_CRL_METHOD, the CRL has already been downloaded and the data stored on the X509_CRL structure. (Perhaps this made more sense before the structure was made opaque?) Update-Note: APIs relating to X509_CRL_METHOD are removed. Change-Id: Ia5befa2a0e4f4416c2fb2febecad99fa31c1c6ac Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/52687 Reviewed-by: Adam Langley <[email protected]> Commit-Queue: David Benjamin <[email protected]>
- Loading branch information
Showing
4 changed files
with
16 additions
and
133 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
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
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
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