this repo has no description
1opam-version: "2.0" 2maintainer: [ 3 "Hannes Mehnert <hannes@mehnert.org>" "David Kaloper <david@numm.org>" 4] 5authors: [ 6 "David Kaloper <david@numm.org>" "Hannes Mehnert <hannes@mehnert.org>" 7] 8license: "BSD-2-Clause" 9tags: "org:mirage" 10homepage: "https://github.com/mirleft/ocaml-x509" 11doc: "https://mirleft.github.io/ocaml-x509/doc" 12bug-reports: "https://github.com/mirleft/ocaml-x509/issues" 13depends: [ 14 "ocaml" {>= "4.04.2"} 15 "dune" {>= "1.2"} 16 "ppx_sexp_conv" {>= "v0.11.0"} 17 "cstruct" {>= "4.0.0" & < "6.1.0"} 18 "cstruct-sexp" 19 "sexplib" 20 "asn1-combinators" {>= "0.2.0" & < "0.3.0"} 21 "ptime" 22 "nocrypto" {>= "0.5.3"} 23 "astring" 24 "ounit" {with-test} 25 "cstruct-unix" {with-test & >= "3.0.0"} 26] 27conflicts: [ 28 "ppx_sexp_conv" {= "v0.11.0"} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 ["dune" "build" "-p" name "-j" jobs] 33 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 34] 35dev-repo: "git+https://github.com/mirleft/ocaml-x509.git" 36synopsis: "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml" 37description: """ 38X.509 is a public key infrastructure used mostly on the Internet. It consists 39of certificates which include public keys and identifiers, signed by an 40authority. Authorities must be exchanged over a second channel to establish the 41trust relationship. This library implements most parts of RFC5280 and RFC6125. 42The Public Key Cryptography Standards (PKCS) defines encoding and decoding, 43which is also partially implemented by this library - namely PKCS 1, PKCS 7, 44PKCS 8, PKCS 9 and PKCS 10. 45""" 46url { 47 src: 48 "https://github.com/mirleft/ocaml-x509/releases/download/0.6.3/x509-0.6.3.tbz" 49 checksum: [ 50 "sha256=adfeb9d58f99b92e5a57f2542c72127d161f6473072d86763c8daf383184c340" 51 "md5=52fbcf55fd7fe775c0b33a81f04a92cf" 52 ] 53}