package letsencrypt

  1. Overview
  2. Docs
ACME implementation in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

letsencrypt-v0.2.4.tbz
sha256=91c79828a50243804da29c17563c54d2d528a79207e5b874dce6a3e7fedf7567
sha512=5dad924844e4420266179d386f8516ac57b4a37d70d8a7f3da88b164b8faeea030312531876420a9fb368993b0df5b32e96f04bc5cd065f4e91f8d80d3f006aa

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.