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