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 "logs"
31]
32build: [
33 ["dune" "subst"] {dev}
34 ["dune" "build" "-p" name "-j" jobs]
35 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
36]
37dev-repo: "git+https://github.com/mirleft/ocaml-x509.git"
38synopsis: "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml"
39description: """
40X.509 is a public key infrastructure used mostly on the Internet. It consists
41of certificates which include public keys and identifiers, signed by an
42authority. Authorities must be exchanged over a second channel to establish the
43trust relationship. This library implements most parts of RFC5280 and RFC6125.
44The Public Key Cryptography Standards (PKCS) defines encoding and decoding
45(in ASN.1 DER and PEM format), which is also implemented by this library -
46namely PKCS 1, PKCS 7, PKCS 8, PKCS 9 and PKCS 10.
47"""
48url {
49 src:
50 "https://github.com/mirleft/ocaml-x509/releases/download/v0.11.0/x509-v0.11.0.tbz"
51 checksum: [
52 "sha256=1508993f7ccce9ba7ab8e04e1e94774e06dec382378a45b0e8bdf758ef1e9a3d"
53 "sha512=4ddeb6e991faae1e93a8061dfba88506cea6bc8b1fd5e0dbcd89bbbda52ac8be7f92b79c29ea2736a938615eadf1b0cf61e3268e2e5260a681ed39a467cd14d7"
54 ]
55}