acme-rs

An ACME Client for Let's Encrypt written in Rust to request SSL/TLS certificates. This client follows the guidelines specified in RFC8555.

Contents

Features

Installation

The installation process is done via crates.io. To install the lates version of this tool just run

bash cargo install acme-rs

Usage

acme-rs is using the openssl rust wrapper crate to generate keys and the csr.

The client will store the certificate and the certificate chain in the files "cert.crt" and "chain.crt"

Request a certificate

You can request a certificate by using the following command:
bash acme-rs [OPTIONS] --domain <domain>

Options

By running the command "acme-rs --help" you can get an overview of all the commands available.

```bash An acme client (RFC8555) written in the rust programming language

USAGE: acme-rs [FLAGS] [OPTIONS] --email --domain

FLAGS: -h, --help Prints help information -v, --verbose Enables debug output -V, --version Prints version information

OPTIONS: -d, --domain The domain to register the certificate for -e, --email --private-key An optional private key file (PEM format) to load the keys from --public-key -s, --server The ACME server's URL ```