package letsencrypt

  1. Overview
  2. Docs
ACME implementation in OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

letsencrypt-2.1.0.tbz
sha256=7c148f2adb7cae84ea873065a5ff6b0e0e58d62782da54ba5d024d4069dc50ed
sha512=70c6d8485700934898d94f3ad84a2fb2ca1a4416c64d1217b17bbccf51a73bd43f6e09f04b1551ad42c9735c665f00fdcc8b2d3621aba69450e354f5fd06e9e9

doc/README.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
$ opam install letsencrypt-app #for oacmel, the LE client binary

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.