Michael Watzko

Results 44 comments of Michael Watzko

I guess you are using a simplified version of the asn1 definition. I change the name generation - which did actually generate wrong type names by duplicating the inner name...

Not sure if this will catch all cases, but do you mind trying d662e56ec969156dfddbd3064fba6f90186d9d8c and c7b74013efadef7d8b4c77fa5e0f377c5d97cacd? It is on a separate branch https://github.com/kellerkindt/asn1rs/tree/test-psql-typename-limit

Hey, got another commit to that should fix the issue with the reference statements 2d69ca1ca4fa0c165d107d2ecde616eaf5e4bedd You wanna give it a try? Its also on the [test-psql-typename-limit](https://github.com/kellerkindt/asn1rs/tree/test-psql-typename-limit)-branch

Hi there. You are right, `OBJECT IDENTIFIER` is not yet supported. An overview ticket would be nice to have :)

I am considering adding a field next to the tag attribute: https://github.com/kellerkindt/asn1rs/blob/b6d5f77f6095fcdc91611ab1859bb7ef405de229/asn1rs-model/src/model/asn.rs#L9-L14 Something like ```rust pub enum TagExplicitness { Explicit, Implicit, } #[derive(Debug, Clone, PartialOrd, PartialEq)] pub struct Asn {...

Hi there. I did not start to implement my proposal from above. I am not familiar with the tagging behaviour of ASN.1, because I only use the uPER encoding -...

For LDAP, at least the following features are missing: * [x] [Constants](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc4511-LDAP-V3.asn1#L44) * [x] [`WITH COMPONENTS`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc4511-LDAP-V3.asn1#L79) * [ ] [`COMPONENTS OF`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc4511-LDAP-V3.asn1#L176) * [x] [`DEFAULT`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc4511-LDAP-V3.asn1#L152) * [x] [`NULL`](https://github.com/Devolutions/asn1rs/blob/examples/examples/rfc4511-LDAP-V3.asn1#L179) * [x] [Referencing...

Can you link and/or explain what the differences is between `IMPLICIT`/`EXPLICIT`/`AUTOMATIC TAGS` is? With `uPER` this didn't really matter until now

TBH, I did not. I don't have a lot of time left over to work on this at the moment. But I want to at some point - maybe at...

Cross referencing with #34 and #10