Add ExtractIssuerFromX509Cert and OpenSSL implementation · Issue #26426 · project-chip/connectedhomeip · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should extract the bytes of an ASN.1 X.509 certificate issuer field, from in-place representation. The data is not copied-out, but rather out_issuer_in_place is updated to point to the contents of the certificate. The full Issuer sequence should be present.
Example of extracting the right format is attached.
Need to document the basic interface, add OpenSSL implementation and add a unit test for:
CHIP_ERROR ExtractIssuerFromX509Cert(const ByteSpan & certificate, ByteSpan & out_issuer_in_place)
This should extract the bytes of an ASN.1 X.509 certificate issuer field, from in-place representation. The data is not copied-out, but rather
out_issuer_in_place
is updated to point to the contents of the certificate. The full Issuer sequence should be present.Example of extracting the right format is attached.
extract_cert_fields_for_dcl.py.zip
The text was updated successfully, but these errors were encountered: