package letsencrypt

  1. Overview
  2. Docs
ACME implementation in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

letsencrypt-v0.2.2.tbz
sha256=36be2e582bc04bb4a6583e7ed199b8c9c767632b25a20930de9c3a1e99a23539
sha512=a241886747e0090cd2433e6abce5a4b1a42ed948b7cdf056192b4ed247f3d53cbc6fd98bb3a18d229dff70e556bdf03f33bc605cec31e2028dfd505597db7f0e

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.