# ExAcme
[](https://hex.pm/packages/ex_acme)
[](https://hexdocs.pm/ex_acme)
[](https://github.com/jtdowney/ex_acme/blob/main/LICENSE)
[](https://coveralls.io/github/jtdowney/ex_acme?branch=main)
[](https://github.com/jtdowney/ex_acme/actions)
ExAcme is a lightweight, developer-friendly Elixir library for interacting with [RFC 8555-compliant](https://tools.ietf.org/html/rfc8555) ACME servers like [Let's Encrypt](https://letsencrypt.org). It simplifies the process of managing X.509 (TLS/SSL) certificates by providing a straightforward API for registering accounts, handling domain challenges, and issuing certificates.
## Features
- Designed with developer productivity and Elixir idioms in mind.
- Easy integration into your projects with minimal configuration.
## Missing
- [Renewal information extension (DRAFT)](https://datatracker.ietf.org/doc/draft-ietf-acme-ari/)
## Installation
The package can be installed by adding `ex_acme` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_acme, "~> 0.6.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) and published on [HexDocs](https://hexdocs.pm). The docs can be found at <https://hexdocs.pm/ex_acme>.
## Examples
### Starting the client
You can add ExAcme to your supervision tree.
```elixir
children = [
{ExAcme, name: MyAcme, directory_url: :lets_encrypt_staging}
]
```
### Registering an account
To register a new account with the ACME server, you need to generate an account key, create a registration, and agree to the terms of service.
```elixir
alias ExAcme.RegistrationBuilder
# Generate a new account key
key = ExAcme.generate_key()
# Create and configure the registration
registration =
RegistrationBuilder.new_registration()
|> RegistrationBuilder.contacts(email: "admin@example.com")
|> RegistrationBuilder.agree_to_terms()
# Register the account
case ExAcme.register_account(registration, key, MyAcme) do
{:ok, account, account_key} ->
IO.puts("Account registered successfully!")
IO.inspect(account)
{:retry_after, seconds} ->
IO.puts("Server requested retry after #{seconds} seconds")
# Handle retry logic here
{:error, reason} ->
IO.puts("Failed to register account:")
IO.inspect(reason)
end
```
From now on you can use the `account_key` to perform operations on the account. This structure holds the JSON Web Key (JWK) associated with the account and the Key ID (kid) assigned by the ACME server.
### Creating an order request
Once you have registered an account, you can create an order for a certificate by specifying the domain(s) you wish to obtain certificates for.
```elixir
alias ExAcme.OrderBuilder
# Create a new order request
order_request =
OrderBuilder.new_order()
|> OrderBuilder.add_dns_identifier(["example.com", "www.example.com"])
# Submit the order
case ExAcme.submit_order(order_request, account_key, MyAcme) do
{:ok, order} ->
IO.puts("Order created successfully!")
IO.inspect(order)
{:retry_after, seconds} ->
IO.puts("Server requested retry after #{seconds} seconds")
# Handle retry logic here
{:error, reason} ->
IO.puts("Failed to create order:")
IO.inspect(reason)
end
```
### Fetching the challenges for the order
After creating an order, you need to complete the necessary challenges to prove ownership of the domain.
```elixir
alias ExAcme.Challenge
for auth_url <- order.authorizations do
{:ok, authorization} = ExAcme.fetch_authorization(auth_url, account_key, MyAcme)
challenge = Challenge.find_by_type(authorization, "dns-01")
if challenge do
value = Challenge.key_authorization(challenge.token, account_key)
# Set up challenge (implementation depends on your setup)
setup_challenge(authorization.identifier["value"], value)
# Trigger validation
{:ok, _validated_challenge} = ExAcme.start_challenge_validation(challenge.url, account_key, MyAcme)
# Poll for challenge completion with proper backoff handling
case poll_until_valid(challenge.url, account_key, MyAcme) do
{:ok, validated_challenge} ->
if validated_challenge.status == "valid" do
IO.puts("Challenge for #{authorization.identifier["value"]} validated successfully.")
else
IO.puts("Challenge for #{authorization.identifier["value"]} failed.")
end
{:error, reason} ->
IO.puts("Failed to validate challenge for #{authorization.identifier["value"]}: #{inspect(reason)}")
end
else
IO.puts("No challenge found for #{authorization.identifier["value"]}.")
end
end
```
### Finalizing the order with a Certificate Signing Request (CSR)
After all challenges are validated, you can finalize the order by submitting a CSR.
```elixir
alias ExAcme.Order
# Create a private key for the certificate
private_key = X509.PrivateKey.new_ec(:secp256r1)
# Generate CSR from the order and private key
csr = Order.to_csr(order, private_key)
# Finalize the order by submitting the CSR
case ExAcme.finalize_order(order.finalize_url, csr, account_key, MyAcme) do
{:ok, finalized_order} ->
IO.puts("Order finalized successfully!")
IO.inspect(finalized_order)
{:retry_after, seconds} ->
IO.puts("Server requested retry after #{seconds} seconds")
# Handle retry logic here
{:error, reason} ->
IO.puts("Failed to finalize order:")
IO.inspect(reason)
end
```
### Fetching the certificate
Once the order is finalized and the certificate is issued, you can fetch the certificate from the ACME server.
```elixir
case ExAcme.fetch_certificates(finalized_order.certificate_url, account_key, MyAcme) do
{:ok, certificates} ->
Enum.each(certificates, fn cert ->
IO.puts("Fetched Certificate:")
IO.puts(X509.Certificate.to_pem(cert))
end)
{:retry_after, seconds} ->
IO.puts("Server requested retry after #{seconds} seconds")
# Handle retry logic here
{:error, reason} ->
IO.puts("Failed to fetch certificate:")
IO.inspect(reason)
end
```
## Handling Retry-After Responses
ExAcme surfaces `Retry-After` headers from ACME servers by returning `{:retry_after, seconds}` when the server indicates you should wait before retrying. Here's how to implement proper polling with backoff:
```elixir
defp poll_until_valid(url, account_key, client, max_attempts \\ 10) do
poll_until_valid(url, account_key, client, max_attempts, 1)
end
defp poll_until_valid(_url, _account_key, _client, 0, _attempt) do
{:error, :max_attempts_reached}
end
defp poll_until_valid(url, account_key, client, max_attempts, attempt) do
case ExAcme.fetch_challenge(url, account_key, client) do
{:ok, challenge} ->
case challenge.status do
"valid" ->
{:ok, challenge}
"invalid" ->
{:error, {:challenge_failed, challenge}}
"pending" ->
# Wait a bit and retry
:timer.sleep(2000)
poll_until_valid(url, account_key, client, max_attempts - 1, attempt + 1)
"processing" ->
# Wait a bit and retry
:timer.sleep(1000)
poll_until_valid(url, account_key, client, max_attempts - 1, attempt + 1)
end
{:retry_after, seconds} ->
# Server told us exactly how long to wait
IO.puts("Server requested retry after #{seconds} seconds")
:timer.sleep(seconds * 1000)
poll_until_valid(url, account_key, client, max_attempts - 1, attempt + 1)
{:error, reason} ->
{:error, reason}
end
end
```
This pattern works for all fetch operations (`fetch_order/3`, `fetch_authorization/3`, `fetch_challenge/3`, etc.) and `start_challenge_validation/3`.
## License
This library is licensed under the [MIT License](https://opensource.org/licenses/MIT).