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