Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yomimono/ocaml-certify
Small command-line tools for making certificates with OCaml x509/nocrypto toolstack.
https://github.com/yomimono/ocaml-certify
Last synced: about 1 month ago
JSON representation
Small command-line tools for making certificates with OCaml x509/nocrypto toolstack.
- Host: GitHub
- URL: https://github.com/yomimono/ocaml-certify
- Owner: yomimono
- License: isc
- Created: 2015-06-16T13:15:14.000Z (over 9 years ago)
- Default Branch: primary
- Last Pushed: 2024-02-17T15:19:11.000Z (10 months ago)
- Last Synced: 2024-08-04T01:25:40.850Z (4 months ago)
- Language: OCaml
- Homepage:
- Size: 148 KB
- Stars: 38
- Watchers: 11
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.md
Awesome Lists containing this project
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](https://github.com/ocaml/opam). 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 certificate
- `certify sign` takes a certificate signing request, and a CA (key and certificate), and produces a certificate
- `certify csr` produces a private key and a certificate signing request## Tests
Simple `openssl` interoperability tests are in `tests/test.sh`.