ocaml-asn1-combinators
ocaml-asn1-combinators copied to clipboard
Embed typed ASN.1 grammars in OCaml
Currently none of the terms in `Asn.S` will error when encoding. For the string types and `utc_time` the input is assumed to be valid when encoding (see also #39 for...
First of all I'd like to thank you for your work, asn1-combinators is a great library and I'm using it every day. At cryptosense we're open sourcing some the of...
There is a bunch of issues stemming from limitations in OID representation. OID code needs to be checked against everything mentioned in this [list](https://www.viathinksoft.de/~daniel-marschall/asn.1/oid_facts.html). Thanks to @andreas23. See #2.
I have the following code to implement LDAP filters for search queries: ```ocaml let filter_part1 x = choice5 (implicit 0 (set_of x)) (implicit 1 (set_of x)) (implicit 2 null) (*...
Hello, I'm interested into using your library to write a simple LDAP client using [eio](https://github.com/ocaml-multicore/eio) for the network stack. As I understand, a LDAP packet is an ASN.1 BER encoded...