We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
IsConstructed
IMPLICIT decoder requires Tagged trait.
Tagged
formats/der/src/asn1/context_specific.rs
Lines 58 to 63 in 937e611
IMPLICIT and EXPLICIT decoders check for constructed bit. But IMPLICIT depends on value.tag() in runtime:
value.tag()
Lines 69 to 70 in 937e611
Lines 161 to 164 in 937e611
I think it should check constructed bit statically, like FixedTag.
FixedTag
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
IMPLICIT decoder requires
Tagged
trait.formats/der/src/asn1/context_specific.rs
Lines 58 to 63 in 937e611
IMPLICIT and EXPLICIT decoders check for constructed bit.
But IMPLICIT depends on
value.tag()
in runtime:formats/der/src/asn1/context_specific.rs
Lines 69 to 70 in 937e611
formats/der/src/asn1/context_specific.rs
Lines 161 to 164 in 937e611
I think it should check constructed bit statically, like
FixedTag
.The text was updated successfully, but these errors were encountered: