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.0"} 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.0/certify-v0.3.0.tbz" 38 checksum: [ 39 "sha256=67b0bb89be2fe42c0901ad18f8cd7d78cb7cc54ad7391054fa0f521e9940bd35" 40 "sha512=e7b4ee48330e03f2a83019f54244ec467649c3c69c836892f36a53e1249fe809787cf43681b0e9c2cb2066805d53aaf82ac26cd58251100461a203da6e08d1aa" 41 ] 42}