Skip to content

Commit

Permalink
Make RDN.Attribute.Value conversion to ASN1Any public
Browse files Browse the repository at this point in the history
When the value is not a printable or UTF8 string, it may be useful to be able to access the underlying encoded bytes.
  • Loading branch information
baarde committed Dec 17, 2024
1 parent 87d0a27 commit b0b60b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/X509/RDNAttribute.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extension ASN1Any {

extension ASN1Any {
@inlinable
init(_ value: RelativeDistinguishedName.Attribute.Value) {
public init(_ value: RelativeDistinguishedName.Attribute.Value) {
self = ASN1Any(value.storage)
}
}
Expand Down

0 comments on commit b0b60b9

Please sign in to comment.