apple / swift-certificates

An implementation of X.509 for Swift
https://swiftpackageindex.com/apple/swift-certificates/main/documentation/x509
Apache License 2.0
223 stars 53 forks source link

Stop implicitly tagging DistinguishedName #188

Closed Lukasa closed 1 month ago

Lukasa commented 1 month ago

DistinguishedName was incorrectly marked DERImplicitlyTaggable, but it isn't. DistinguishedName is our name for Name, which is an untagged choice type. Untagged choice types can never be implicitly tagged.

Resolves #177