trust_list: Add OID info/filtering
See original GitHub issuePackage Control will be switching to use oscrypto.trust_list for TLS trust roots to solve:
- https://github.com/wbond/package_control/issues/1002
- https://github.com/wbond/package_control/issues/1079
In order to do this, we need to tweak trust_list.get_list(). Ideally we need:
- A way to filter
get_list()by one or more key usage strings/extended key usage OIDs - A new method such as
get_list()that will return the list os trust roots along with aset()of their key usage names and extended key usage OIDs
Issue Analytics
- State:
- Created 7 years ago
- Reactions:21
- Comments:11 (6 by maintainers)
Top Results From Across the Web
000339: Input <value> does not have OIDs.—ArcGIS Pro
Solution. Convert the dataset to a dataset that will add an OID field. Several tools, including Copy Features and Copy Rows ...
Read more >Object Identifiers (OID) in PKI - PKI Solutions LLC
One GUI way is via AD Sites and Services (make sure Show Service Node is on under View). Right click and select properties...
Read more >The oscrypto from wbond - Coder Social Home
TLS functionality uses the operating system's trust list/CA certs and is pre-configured with sane defaults ... trust_list: Add OID info/filtering.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

As of 41cb25705aabe33003c89dcc307c81cb23ee650b,
oscrypto.trust_listnow includes trust information for each certificate in the store, andtrust_list.get_path()encodes the trust info into a format that OpenSSL understands.@FichteFoll Thank you!