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