-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
der: implementing other tag classes than Context-Specific #877
Comments
We don’t currently have plans to implement this, and generally implement features as needed by the cryptographic formats implemented in this repo. What format are you trying to implement? |
I am trying to implement that in DER format. |
I was asking the name of the protocol you are trying to implement, i.e. where is that schema defined, and what protocol is it a message for? |
Ah - sorry. Misunderstood. We use X.509 and custom ones. But in X.509 you do not have application tags, I think. So maybe this is the wrong place, if you only implement features needed for cryptographic formats. But anyway - thanks for the fast response. I'll close the issue then. |
We’re happy to accept PRs for additional functionality that goes beyond the formats we’re actively implementing. It’s just not something we’re planning on implementing ourselves any time soon |
I think the issue is still valuable because of the kerberos protocol requirement. The remarkable thing is that it needs the |
Here's an example of top-level tag: Lines 556 to 562 in fd9b041
|
Hello,
first of all thanks for the crate.
I need to parse (and also write) serialized asn1 sequences, where the tags are given as application tag classes, i.e.:
I do not think this is already possible with this library? I only found the distinguishing between context-specific and universal tags when you want to encode a struct (with derives) to der. Are there plan to implement that?
formats/der/derive/src/tag.rs
Line 13 in b20d644
The text was updated successfully, but these errors were encountered: