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.08.0"} 16 "dune" {>= "1.2"} 17 "cstruct" {>= "6.0.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 "mirage-crypto-ec" {>= "0.10.0" & < "1.0.0"} 24 "mirage-crypto-rng" {< "1.0.0"} 25 "mirage-crypto-rng" {with-test & < "0.11.0"} 26 "rresult" 27 "fmt" {>= "0.8.7"} 28 "alcotest" {with-test} 29 "cstruct-unix" {with-test & >= "3.0.0"} 30 "gmap" {>= "0.3.0"} 31 "domain-name" {>= "0.3.0"} 32 "logs" 33 "pbkdf" 34 "ipaddr" {>= "5.2.0"} 35] 36conflicts: [ "result" {< "1.5"} ] 37build: [ 38 ["dune" "subst"] {dev} 39 ["dune" "build" "-p" name "-j" jobs] 40 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 41] 42dev-repo: "git+https://github.com/mirleft/ocaml-x509.git" 43synopsis: "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml" 44description: """ 45X.509 is a public key infrastructure used mostly on the Internet. It consists 46of certificates which include public keys and identifiers, signed by an 47authority. Authorities must be exchanged over a second channel to establish the 48trust relationship. This library implements most parts of RFC5280 and RFC6125. 49The Public Key Cryptography Standards (PKCS) defines encoding and decoding 50(in ASN.1 DER and PEM format), which is also implemented by this library - 51namely PKCS 1, PKCS 5, PKCS 7, PKCS 8, PKCS 9, PKCS 10, and PKCS 12. 52""" 53url { 54 src: 55 "https://github.com/mirleft/ocaml-x509/releases/download/v0.15.0/x509-v0.15.0.tbz" 56 checksum: [ 57 "sha256=d0971862f1c0f3362eac46691f45130b3517874e0226de44eacefff85f925eb9" 58 "sha512=5fd820271bca45254af055b8c4c62460677a43c8092c3d2b9cfa55ae7e7ad3f00e2616dd90eeadbf17e3441b962774edc0cbf2e562cc9dbb0cd39735cac5704a" 59 ] 60} 61x-commit-hash: "25ca258afcff0e62d40a69d106950fea955bca03"