Certes 2.2.1
See the version list below for details.
dotnet add package Certes --version 2.2.1
NuGet\Install-Package Certes -Version 2.2.1
<PackageReference Include="Certes" Version="2.2.1" />
paket add Certes --version 2.2.1
#r "nuget: Certes, 2.2.1"
// Install Certes as a Cake Addin #addin nuget:?package=Certes&version=2.2.1 // Install Certes as a Cake Tool #tool nuget:?package=Certes&version=2.2.1
Certes
Certes is an ACME client runs on .NET 4.5+ and .NET Standard 1.3+, supports ACME v2 and wildcard certificates. It is aimed to provide an easy to use API for managing certificates during deployment processes.
Usage
Install Certes nuget package into your project:
Install-Package Certes
or using .NET CLI:
dotnet add package Certes
Let's Encrypt is the primary CA we supported. It's recommend testing against staging environment before using production environment, to avoid hitting the rate limits.
Account
Creating new ACME account:
var acme = new AcmeContext(WellKnownServers.LetsEncryptStagingV2);
var account = acme.NewAccount("admin@example.com", true);
// Save the account key for later use
var pemKey = acme.AccountKey.ToPem();
Use an existing ACME account:
// Load the saved account key
var accountKey = KeyFactory.FromPem(pemKey);
var acme = new AcmeContext(WellKnownServers.LetsEncryptStagingV2, accountKey);
var account = acme.Account();
See API doc for additional operations.
Order
Place a wildcard certificate order (DNS validation is required for wildcard certificates)
var order = await acme.NewOrder(new[] { "*.your.domain.name" });
Generate the value for DNS TXT record
var authz = (await order.Authorizations()).First();
var dnsChallenge = await authz.Dns();
var dnsTxt = acme.AccountKey.DnsTxt(dnsChallenge.Token);
Add a DNS TXT record to _acme-challenge.your.domain.name
with dnsTxt
value.
For non-wildcard certificate, HTTP challenge is also available
var order = await acme.NewOrder(new[] { "your.domain.name" });
Authorization
Get the token and key authorization string
var authz = (await order.Authorizations()).First();
var httpChallenge = await authz.Http();
var keyAuthz = httpChallenge.KeyAuthz;
Save the key authorization string in a text file,
and upload it to http://your.domain.name/.well-known/acme-challenge/<token>
Validate
Ask the ACME server to validate our domain ownership
await challenge.Validate();
Certificate
Download the certificate once validation is done
var privateKey = KeyFactory.NewKey(KeyAlgorithm.ES256);
var cert = await order.Generate(new CsrInfo
{
CountryName = "CA",
State = "Ontario",
Locality = "Toronto",
Organization = "Certes",
OrganizationUnit = "Dev",
CommonName = "your.domain.name",
}, privateKey);
Export full chain certification
var certPem = cert.ToPem();
Export PFX
var pfxBuilder = cert.ToPfx(privateKey);
var pfx = pfxBuilder.Build("my-cert", "abcd1234");
Check the APIs for more details.
For ACME v1, please see the doc here.
CLI
The CLI is available as a dotnet global tool. .NET Core Runtime 2.1+ (currently in preview) is required to use dotnet tools.
To install Certes CLI (you may need to restart the console session if this is the first dotnet tool installed)
dotnet install tool --global dotnet-certes
Use the --help
option to get started
certes --help
or check this AppVeyor script for renewing certificates on Azure apps.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Also check the changelog to see what's we are working on.
CI Status
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.3 is compatible. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 is compatible. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5
- Newtonsoft.Json (>= 11.0.1)
- Portable.BouncyCastle (>= 1.8.1.4)
- System.Net.Http (>= 4.3.3)
- System.ValueTuple (>= 4.4.0)
-
.NETFramework 4.7
- Newtonsoft.Json (>= 11.0.1)
- Portable.BouncyCastle (>= 1.8.1.4)
- System.Net.Http (>= 4.3.3)
-
.NETStandard 1.3
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 11.0.1)
- Portable.BouncyCastle (>= 1.8.1.4)
- System.ValueTuple (>= 4.4.0)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.1)
- Portable.BouncyCastle (>= 1.8.1.4)
NuGet packages (32)
Showing the top 5 NuGet packages that depend on Certes:
Package | Downloads |
---|---|
LettuceEncrypt
Provides API for configuring ASP.NET Core to automatically generate HTTPS certificates. This configures your server to use the ACME protocol to connect with a certificate authority (CA), such as Let's Encrypt (https://letsencrypt.org), to verify ownership of your domain name and generate a HTTPS certificate. This happens automatically when the server starts up, and will renew the certificate automatically when the expiration date is near. This only works with Kestrel, which is the default server configuration for ASP.NET Core projects. Other servers, such as IIS and nginx, are not supported. |
|
FluffySpoon.AspNet.LetsEncrypt
Package Description |
|
LagoVista.Net.LetsEncrypt
Provides Middleware and services to request and store certificates from the Let's Encrypt service for ASP.NET Core applications |
|
ZC.Middleware.DefaultAPI
Package Description |
|
DH.LettuceEncrypt
用于DH框架的Let's Encrypt生成库。参考https://github.com/natemcmaster/LettuceEncrypt |
GitHub repositories (8)
Showing the top 5 popular GitHub repositories that depend on Certes:
Repository | Stars |
---|---|
natemcmaster/LettuceEncrypt
Free, automatic HTTPS certificate generation for ASP.NET Core web apps
|
|
sjkp/letsencrypt-siteextension
Azure Web App Site Extension for easy installation and configuration of Let's Encrypt issued SSL certifcates for custom domain names.
|
|
Maarten88/rrod
Exploring a new web architecture with React, Redux, Orleans and Dotnet Core
|
|
ffMathy/FluffySpoon.AspNet.EncryptWeMust
|
|
junkai-li/NetCoreKevin
基于NET6搭建跨平台DDD-微服务-WebApi架构支持:IDS4单点登录、多缓存、自动任务、分布式、多租户、日志、授权和鉴权、CAP集成事件、SignalR、领域事件、单元测试
|
Version | Downloads | Last updated |
---|---|---|
3.0.4 | 291,427 | 1/4/2023 |
3.0.3 | 236,215 | 10/4/2021 |
3.0.0 | 126,592 | 7/18/2021 |
2.3.4 | 407,946 | 3/27/2020 |
2.3.3 | 365,659 | 12/17/2018 |
2.3.2 | 68,717 | 10/20/2018 |
2.3.1 | 1,852 | 10/16/2018 |
2.3.0 | 19,493 | 6/15/2018 |
2.2.2 | 2,385 | 5/31/2018 |
2.2.1 | 2,413 | 5/15/2018 |
2.2.0 | 3,158 | 5/5/2018 |
2.1.0 | 2,220 | 4/28/2018 |
2.0.1 | 2,998 | 3/17/2018 |
2.0.0 | 2,211 | 3/13/2018 |
1.1.4 | 2,920 | 3/4/2018 |
1.1.3 | 8,203 | 11/23/2017 |
1.1.2 | 3,948 | 9/28/2017 |
1.1.0 | 3,787 | 8/17/2017 |
1.0.7 | 8,939 | 7/20/2017 |
1.0.6.202 | 3,427 | 4/4/2017 |
1.0.5.191 | 2,189 | 3/29/2017 |
1.0.4.178 | 2,138 | 3/29/2017 |
1.0.3.139 | 2,188 | 12/22/2016 |
1.0.2.108 | 2,284 | 7/13/2016 |
1.0.1.64 | 2,275 | 7/6/2016 |
1.0.0.55 | 2,394 | 7/6/2016 |