-
Notifications
You must be signed in to change notification settings - Fork 184
[WIP] ACMESharp Details
In order to help understand the details of ACMESharp, it is important to first understand some basic concepts of the ACME protocol. ACME is used to support automated certificate request and issuance from a Certificate Authority. An ACME Client (such as ACMESharp) interacts with an ACME Server through a series of message exchanges. The typical, high-level flow is as follows:
- Client creates a new Account with Server
- Client validates ownership of a DNS Identifier (domain name) to the Server
- Client generates a certificate signing request (CSR) for a validated Identifier
- Client requests a certificate by submitting the CSR to the Server
- Client retrieves signed certificate from Server and installs it into one or more servers or services
- Client will periodically renew the certificate by repeating steps 2-5
- Optionally, Client may choose to revoke a certificate with the Server
In the ACME protocol flow described above there are many places where the steps can vary greatly in how processing can be handled, both within the ACME protocol itself as well as external integrations and dependencies. For example, the ACME protocol defines several mechanisms for validating that a Client is the owner of a DNS Identifier and allows for one or more of them to be used as prescribed by the Server. Similarly, once a certificate is issued from Server to Client, the Client may wish to install that certificate into various different server applications or services.
To address the need to accommodate all these areas of variations, and allow for an open-ended system that can evolve along with the ACME protocol and usage of certificates, ACMESharp is built on a core extension mechanism that allows feature-specific Providers to handle these variations.
Docs
- Overview
- FAQ
- Let's Encrypt Reference Sheet
- Quick Start
- Requirements
- Basic Concepts
- Vaults, Vault Providers and Vault Profiles
- Challenge Types, Challenge Handlers and Providers
- Troubleshooting
- Contributions
Legacy Docs - out of date
Reference
- Good to Know
- Proposed Extension Mechanism
- PowerShell Module Design
- Style Guides and Conventions
- Documentation Resources
A bit dated