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