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