package letsencrypt

  1. Overview
  2. Docs
ACME implementation in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

letsencrypt-v0.2.0.tbz
sha256=381fcc0c75f191accfe1cac9019e8de15402e3037ab680487ade6b70353e1257
sha512=91d5c293f9a1173c593a4bd7cb6655328e10f0a836b22c54e08d2bad40b62e20e10cdcc83a16ffb49eb7907d53b5fee63ac3b813b99f5fafee021e5f3dded1f7

README.md.html

let's encrypt - an ACME implementation in OCaml

This package contains an implementation of the ACME protocol (mostly client side) purely in OCaml based on RFC 8555. The HTTP, DNS, and ALPN challenges are implemented.

Build with:

$ opam install letsencrypt

Generate a new account key with:

$ openssl req -newkey rsa > csr.pem
$ openssl genrsa > account.pem

with OCaml version ≥ 4.07.0. Note: acme.ml is not tested, and should be considered yet to be implemented.