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
Adds a new, cryptobyte based, CRL parser, which returns a
x509.RevocaitonList, rather than a pkix.CertificateList. This allows us
to return much more detailed information, as well as leaving open the
option of adding further information since RevocationList is not a
direct ASN.1 representation like pkix.CertificateList. Additionally
a new method is added to RevocationList, CheckSignatureFrom, which is
analogous to the method with the same name on Certificate, which
properly checks that the signature is from an issuing certiifcate.
This change also deprecates a number of older CRL related functions and
types, which have been replaced with the new functionality introduced
in this change:
crypto/x509.ParseCRL
crypto/x509.ParseDERCRL
crypto/x509.CheckCRLSignature
crypto/x509/pkix.CertificateList
crypto/x509/pkix.TBSCertificateList
The text was updated successfully, but these errors were encountered:
The structure Certificate's change will be in golang 1.18.
emmansun
changed the title
[sync] crypto/x509: add new CRL parser, deprecate old one
[go1.18][sync] crypto/x509: add new CRL parser, deprecate old one
Aug 19, 2022
emmansun
changed the title
[go1.18][sync] crypto/x509: add new CRL parser, deprecate old one
[go1.19][sync] crypto/x509: add new CRL parser, deprecate old one
Mar 7, 2023
emmansun
changed the title
[go1.19][sync] crypto/x509: add new CRL parser, deprecate old one
[go1.19] crypto/x509: add new CRL parser, deprecate old one
Mar 6, 2024
golang/go@2de2f6d
Adds a new, cryptobyte based, CRL parser, which returns a
x509.RevocaitonList, rather than a pkix.CertificateList. This allows us
to return much more detailed information, as well as leaving open the
option of adding further information since RevocationList is not a
direct ASN.1 representation like pkix.CertificateList. Additionally
a new method is added to RevocationList, CheckSignatureFrom, which is
analogous to the method with the same name on Certificate, which
properly checks that the signature is from an issuing certiifcate.
This change also deprecates a number of older CRL related functions and
types, which have been replaced with the new functionality introduced
in this change:
The text was updated successfully, but these errors were encountered: