Masih Yeganeh

Results 41 comments of Masih Yeganeh

I have a small list of features that are needed for my project. I'm sure that most of them should be implemented for X.509 but I'll write them anyway: -...

> * [ ] [`IMPLICIT`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc3280-PKIX1Explicit88.asn1#L377) > * [ ] [`EXPLICIT`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc3280-PKIX1Explicit88.asn1#L605) Hello @kellerkindt I see that you are still actively developing. Can I request implementation of these two? These were stopper...

Thanks @awakecoding for your suggestion but actually `asn1rs` is better fit for my project. I already have many complex asn1 files that needs to be converted to readable rust structs...

Yeah, as I said before, there is a good post in let's encrypt for that: [https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/#explicit-vs-implicit](https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/#explicit-vs-implicit)

Hey @kellerkindt, Could you find spare time to look at this?

Correct me if I'm wrong, but based on this example: ``` asn1 Data-Structures DEFINITIONS ::= BEGIN DataStructures ::= SEQUENCE { int INTEGER, limitedString UTF8String (SIZE(1..16)), optionalString UTF8String OPTIONAL, enumerated ENUMERATED...

OK, I just added ability to parse `AUTOMATIC TAGS` and saving it as a boolean `automatic_tags` on model. I see that you already extracting tag number in `next_with_opt_tag`. Please help...

Fantastic. Would you please release a version on [crates.io](https://crates.io/) so I can play with it? I couldn't make it work with master branch.

Thanks. It was because of my other dependencies. My old version of `reqwest` was conflicting with yours. Can you please implement `SET` and `SET OF` before I start to figure...

I just started to implement DER, but I think I'm lost. I copied `src/syn/io/uper.rs` to `src/syn/io/der.rs` and started changing it, but I found out that in other parts of code,...