this repo has no description
1opam-version: "2.0"
2maintainer: ["maintenance@identity-function.com"]
3homepage: "https://github.com/yomimono/ocaml-certify"
4dev-repo: "git+https://github.com/yomimono/ocaml-certify.git"
5bug-reports: "https://github.com/yomimono/ocaml-certify/issues"
6doc: "https://yomimono.github.io/ocaml-certify/doc"
7synopsis: "CLI utilities for simple X509 certificate manipulation"
8authors: [
9 "Mindy Preston"
10]
11tags: ["org:mirage"]
12
13build: [
14 [ "dune" "build" "-p" name "-j" jobs ]
15 [ "env" "CERTDIR=tmp" "KEYDIR=tmp" "./test/test.sh" ] {with-test}
16]
17depends: [
18 "dune" {>= "1.0"}
19 "nocrypto" {>= "0.5.4"}
20 "x509" {= "0.7.1"}
21 "cstruct" {>= "3.2.0"}
22 "ptime"
23 "ocaml" {>= "4.04.2"}
24 "cmdliner" {>= "1.0.0"}
25 "conf-openssl" {with-test}
26]
27description: """
28`certify` is a small selection of useful utilities for manipulating X509 certificates and public keys. It uses the mirleft organization's x509, tls, and nocrypto libraries.
29
30Three subcommands to `certify` are provided:
31* `certify csr`: make a certificate signing request
32* `certify selfsign`: make a self-signed certificate
33* `certify sign`: sign a certificate
34"""
35url {
36 src:
37 "https://github.com/yomimono/ocaml-certify/releases/download/v0.3.1/certify-v0.3.1.tbz"
38 checksum: [
39 "sha256=35a9492d13d90f6e6c1720a38fb210af9c1d09f3d231bbb5518714fcbd9ca24e"
40 "sha512=dafbdfbafe8b6fa77599a03ce98d3139dbe39831b3a34466cbb5fb4a3a48004f19184b12d426908f4d28d5751b3c6e41aa45188bddc0f5d956d66b7ba3e49178"
41 ]
42}