acme-rfc8555

Provision certificates from ACME (Automatic Certificate Management Environment) providers such as Let's Encrypt.

crates.io Documentation MIT or Apache 2.0 licensed
dependency status Download CI

Follows the RFC 8555 spec, using ACME v2 to issue/renew certificates.

Originally a fork of acme-micro and acme-lib, but the code has deviated significantly since then.

Crate Goals

Domain Ownership

Most website TLS certificates tries to prove ownership/control over the domain they are issued for. For ACME, this means proving you control either:

To use this library, there are points in the flow where you would need to modify either the web server or DNS server before progressing to get the certificate.

See [tls_alpn_challenge], [http_challenge], and [dns_challenge].

Multiple Domains

When creating a new order, it's possible to provide multiple alt-names that will also be part of the certificate. The ACME API requires you to prove ownership of each such domain. See [authorizations].

Rate Limits

The ACME API provider Let's Encrypt uses [rate limits] to ensure the API is not being abused. It might be tempting to put the delay really low in some of this library's polling calls, but balance this against the real risk of having access cut off.

Use Staging For Development!

Especially take care to use the Let's Encrypt staging environment for development where the rate limits are more relaxed. See [DirectoryUrl::LetsEncryptStaging].