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.04.2"} 16 "dune" {>= "1.2"} 17 "cstruct" {>= "4.0.0" & < "6.1.0"} 18 "asn1-combinators" {>= "0.2.0" & < "0.3.0"} 19 "ptime" 20 "nocrypto" {>= "0.5.3"} 21 "rresult" 22 "fmt" 23 "alcotest" {with-test} 24 "cstruct-unix" {with-test & >= "3.0.0"} 25 "gmap" {>= "0.3.0"} 26 "domain-name" {>= "0.3.0"} 27 "ipaddr" {>= "4.0.0"} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 ["dune" "build" "-p" name "-j" jobs] 32 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 33] 34dev-repo: "git+https://github.com/mirleft/ocaml-x509.git" 35synopsis: "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml" 36description: """ 37X.509 is a public key infrastructure used mostly on the Internet. It consists 38of certificates which include public keys and identifiers, signed by an 39authority. Authorities must be exchanged over a second channel to establish the 40trust relationship. This library implements most parts of RFC5280 and RFC6125. 41The Public Key Cryptography Standards (PKCS) defines encoding and decoding 42(in ASN.1 DER and PEM format), which is also implemented by this library - 43namely PKCS 1, PKCS 7, PKCS 8, PKCS 9 and PKCS 10. 44""" 45url { 46 src: 47 "https://github.com/mirleft/ocaml-x509/releases/download/0.7.0/x509-0.7.0.tbz" 48 checksum: [ 49 "sha256=237c2a5e6d7490f5d14510188c6f47b257e6368d91516580931c7994d3108e12" 50 "sha512=b8cabf3b0a6d4f6e6c6b22e401207fe12666d01a266132c0929453c11bbd6a82d4726b809ef8c3a5b47cb8da54e8e74942e33872a6e09df01ea35f4c868b238b" 51 ] 52}