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
Currently the properties tag and data of the TaggedValue type aren't accessible.
Proposed change:
// Tagged.swift
public struct TaggedValue: Codable, Equatable, Hashable {
- var tag: UInt8+ public var tag: UInt8- var data: Data+ public var data: Data
public init(tag: UInt8, data: Data) {
self.tag = tag
self.data = data
}
}
I made these changes myself when I realized I don't have permission to push the branch... would appreciate if someone could take care of that or add me as a collaborator 🙌
The text was updated successfully, but these errors were encountered:
davidscheutz
changed the title
ASN.1 TaggedValue make Properties Public
ASN.1 TaggedValue make properties public
Jan 13, 2025
Currently the properties
tag
anddata
of theTaggedValue
type aren't accessible.Proposed change:
I made these changes myself when I realized I don't have permission to push the branch... would appreciate if someone could take care of that or add me as a collaborator 🙌
The text was updated successfully, but these errors were encountered: