-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathx509.opam
51 lines (51 loc) · 1.66 KB
/
x509.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
opam-version: "2.0"
maintainer: [
"Hannes Mehnert <hannes@mehnert.org>"
]
authors: [
"Hannes Mehnert <hannes@mehnert.org>"
"David Kaloper <dk505@cam.ac.uk>"
]
license: "BSD-2-Clause"
tags: "org:mirage"
homepage: "https://github.com/mirleft/ocaml-x509"
doc: "https://mirleft.github.io/ocaml-x509/doc"
bug-reports: "https://github.com/mirleft/ocaml-x509/issues"
depends: [
"ocaml" {>= "4.13.0"}
"dune" {>= "2.0"}
"asn1-combinators" {>= "0.3.1"}
"ptime"
"base64" {>= "3.3.0"}
"mirage-crypto" {>= "1.0.0"}
"mirage-crypto-pk"
"mirage-crypto-ec" {>= "0.10.7"}
"mirage-crypto-rng"
"mirage-crypto-rng" {with-test & >= "0.11.0"}
"fmt" {>= "0.8.7"}
"alcotest" {with-test}
"gmap" {>= "0.3.0"}
"domain-name" {>= "0.3.0"}
"logs"
"kdf" {>= "1.0.0"}
"ohex" {>= "0.2.0"}
"ipaddr" {>= "5.2.0"}
]
conflicts: [ "result" {< "1.5"} ]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/mirleft/ocaml-x509.git"
synopsis: "Public Key Infrastructure (RFC 5280, PKCS) purely in OCaml"
description: """
X.509 is a public key infrastructure used mostly on the Internet. It consists
of certificates which include public keys and identifiers, signed by an
authority. Authorities must be exchanged over a second channel to establish the
trust relationship. This library implements most parts of RFC5280 and RFC6125.
The Public Key Cryptography Standards (PKCS) defines encoding and decoding
(in ASN.1 DER and PEM format), which is also implemented by this library -
namely PKCS 1, PKCS 5, PKCS 7, PKCS 8, PKCS 9, PKCS 10, and PKCS 12.
"""
x-maintenance-intent: [ "(latest)" ]