package certify
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=67b0bb89be2fe42c0901ad18f8cd7d78cb7cc54ad7391054fa0f521e9940bd35
sha512=e7b4ee48330e03f2a83019f54244ec467649c3c69c836892f36a53e1249fe809787cf43681b0e9c2cb2066805d53aaf82ac26cd58251100461a203da6e08d1aa
Description
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.
Three subcommands to certify
are provided:
certify csr
: make a certificate signing requestcertify selfsign
: make a self-signed certificatecertify sign
: sign a certificate
README
About
A very small utility for common certificate operations using ocaml-x509 and ocaml-nocrypto for key generation. Intended as a (non-drop-in) replacement for these uses of the command-line openssl
utility.
Install
certify
is now available in opam
, a free source-based package manager for OCaml. You can install certify
via opam with opam install certify
.
Outside of opam:
git clone https://github.com/yomimono/ocaml-certify
dune build
The certify
binary will be in _build/default/install/bin
, and you can install it wherever you like, or just use it in place.
Running
For help, try certify selfsign --help
, certify sign --help
, or certify csr --help
.
certify selfsign
produces a private key and self-signed certificatecertify sign
takes a certificate signing request, and a CA (key and certificate), and produces a certificatecertify csr
produces a private key and a certificate signing request
Tests
Simple openssl
interoperability tests are in tests/test.sh
.