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
The next version of go has a change to the crypto/x509 library which introduces a new x509.OID type, and uses this type to power a new Policies field on certificate objects. This field exists along-side the current PolicyIdentifiers field, which is of type asn1.ObjectIdentifier.
When we update to go1.22, we should update the CA and ceremony tool to use the new Policies field instead of PolicyIdentifiers.
The text was updated successfully, but these errors were encountered:
Populate the new x509.Certificate.Policies field everywhere we currently populate the x509.Certificate.PolicyIdentifiers field. This allows Go to use whichever field it prefers (go1.23 prefers PolicyIdentifiers, go1.24 prefers Policies) as the source of truth when serializing a certificate.
Part of #7148
The next version of go has a change to the crypto/x509 library which introduces a new
x509.OID
type, and uses this type to power a newPolicies
field on certificate objects. This field exists along-side the currentPolicyIdentifiers
field, which is of typeasn1.ObjectIdentifier
.When we update to go1.22, we should update the CA and ceremony tool to use the new
Policies
field instead ofPolicyIdentifiers
.The text was updated successfully, but these errors were encountered: