All Projects → eggsampler → acme

eggsampler / acme

Licence: MIT license
Go client library implementation for ACME v2 (RFC8555)

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to acme

Boulder
An ACME-based certificate authority, written in Go.
Stars: ✭ 4,091 (+5212.99%)
Mutual labels:  acme, boulder, lets-encrypt, rfc8555
Acme.sh
A pure Unix shell script implementing ACME client protocol
Stars: ✭ 24,723 (+32007.79%)
Mutual labels:  letsencrypt, acme, certbot, zerossl
letsencrypt-inwx
A small cli utility for automating the letsencrypt dns-01 challenge for domains hosted by inwx.
Stars: ✭ 43 (-44.16%)
Mutual labels:  letsencrypt, acme, certbot
docker-nginx-certbot
Automatically create and renew website certificates for free using the Let's Encrypt certificate authority.
Stars: ✭ 367 (+376.62%)
Mutual labels:  letsencrypt, acme, certbot
wat
WAT - Windows ACME Tool
Stars: ✭ 28 (-63.64%)
Mutual labels:  letsencrypt, acme, certbot
acme-dns-01-cloudflare
Cloudflare DNS for Let's Encrypt / ACME dns-01 challenges with Greenlock.js and ACME.js
Stars: ✭ 13 (-83.12%)
Mutual labels:  letsencrypt, acme, lets-encrypt
Sewer
Let's Encrypt(ACME) client. Python library & CLI app.
Stars: ✭ 131 (+70.13%)
Mutual labels:  letsencrypt, acme, certbot
Certbot
Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.
Stars: ✭ 28,541 (+36966.23%)
Mutual labels:  letsencrypt, acme, certbot
acme-companion
Automated ACME SSL certificate generation for nginx-proxy
Stars: ✭ 6,434 (+8255.84%)
Mutual labels:  letsencrypt, acme, zerossl
docker-haproxy-certbot
Dockerized HAProxy with Let's Encrypt certificates automatic renewal
Stars: ✭ 28 (-63.64%)
Mutual labels:  letsencrypt, certbot, lets-encrypt
Docker Letsencrypt Nginx Proxy Companion
Automated ACME SSL certificate generation for nginx-proxy
Stars: ✭ 6,350 (+8146.75%)
Mutual labels:  letsencrypt, acme, zerossl
Letscertbot
Let's Certbot is a tool builds automated scripts base on Certbot for obtaining, renewing, deploying SSL certificates.
Stars: ✭ 84 (+9.09%)
Mutual labels:  letsencrypt, acme, certbot
Manuale
A fully manual Let's Encrypt/ACME client
Stars: ✭ 201 (+161.04%)
Mutual labels:  letsencrypt, acme
Certbot Route53
Helping create Let's Encrypt certificates for AWS Route53
Stars: ✭ 159 (+106.49%)
Mutual labels:  letsencrypt, certbot
Terraform Provider Acme Old
ACME (Let's Encrypt) Support for Terraform
Stars: ✭ 211 (+174.03%)
Mutual labels:  letsencrypt, acme
roxy
Roxy the Frontend Proxy
Stars: ✭ 52 (-32.47%)
Mutual labels:  letsencrypt, autocert
Acmetool
🔒 acmetool, an automatic certificate acquisition tool for ACME (Let's Encrypt)
Stars: ✭ 1,882 (+2344.16%)
Mutual labels:  letsencrypt, acme
docker-ssl-reverse-proxy
Easy-to-use auto-SSL reverse proxy as a Docker container based on Caddy and Let’s Encrypt
Stars: ✭ 22 (-71.43%)
Mutual labels:  letsencrypt, lets-encrypt
Intranet-Lets-Encrypt-Certification
Guide to setting up a Let's Encrypt SSL certificate for a non-public facing server.
Stars: ✭ 27 (-64.94%)
Mutual labels:  letsencrypt, lets-encrypt
qiniu-auto-cert
七牛 CDN 证书自动化工具
Stars: ✭ 20 (-74.03%)
Mutual labels:  letsencrypt, acme

eggsampler/acme

GoDoc Build Status Coverage Status

About

eggsampler/acme is a Go client library implementation for RFC8555 (previously ACME v2). This library can be used with the Let's Encrypt Certificate Authority (CA), but also other ACME compliant CA's such as ZeroSSL.

The library is designed to provide a zero external dependency wrapper over exposed directory endpoints and provide objects in easy to use structures.

Requirements

A Go version of at least 1.11 is required as this repository is designed to be imported as a Go module.

Usage

Simply import the module into a project,

import "github.com/eggsampler/acme/v3"

Note the /v3 major version at the end. Due to the way modules function, this is the major version as represented in the go.mod file and latest git repo semver tag. All functions are still exported and called using the acme package name.

Examples

A simple certbot-like example is provided in the examples/certbot directory. This code demonstrates account registration, new order submission, fulfilling challenges, finalising an order and fetching the issued certificate chain.

An example of how to use the autocert package is also provided in examples/autocert.

Tests

The tests can be run against an instance of boulder or pebble.

Challenge fulfilment is designed to use the new challtestsrv server present inside boulder and pebble which responds to dns queries and challenges as required.

To run tests against an already running instance of boulder or pebble, use the test target in the Makefile.

Some convenience targets for launching pebble/boulder using their respective docker compose files have also been included in the Makefile.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].