sparrow-cert
1.1.16
See the version list below for details.
dotnet add package sparrow-cert --version 1.1.16
NuGet\Install-Package sparrow-cert -Version 1.1.16
<PackageReference Include="sparrow-cert" Version="1.1.16" />
paket add sparrow-cert --version 1.1.16
#r "nuget: sparrow-cert, 1.1.16"
// Install sparrow-cert as a Cake Addin #addin nuget:?package=sparrow-cert&version=1.1.16 // Install sparrow-cert as a Cake Tool #tool nuget:?package=sparrow-cert&version=1.1.16
sparrow-cert
SparrowCert is a simple certificate renewal library for Kestrel-based services. It can be used in any .NET Core-based web service. The service automatically renews certificates, eliminating the need to worry about certificate expiry. It uses the Let's Encrypt ACME protocol to issue and renew certificates and is tested with Kubernetes and Nginx Proxy Manager.
Features updates
- Focused on making drop-in reusable Nuget package as a library out of the box
- Updated to the .NET Core 8.0
- Updated the old BouncyCastle, Certes dependency to the current version
- Removed old vulnerable (CVE-2024-21907) Newtonsoft.Json dependency, replaced with System.Text.Json
- Customizable configuration of certificate renewal (cert.json)
- Added configurable properties such as CertPath, HttpPort, HttpsPort, CertPwd, and more
- Container friendly (tested with Kubernetes, Docker, and/or NAT Routers, Nginx Proxy)
- Added Auto self-signed certificate generator for initial Kestrel loading
- Built-in Let's Encrypt Staging/Production mode differentiate by the file names
- Added Slack and Email notification with attached certificate and key file upon renewals
Prerequisites
- .NET Core 8.0
- Docker (optional, for deployment)
- Kubernetes (optional, for deployment)
How to test it
- Clone the repository (or get it from NuGet.org)
- Navigate to the project 'SparrowCert.Runner' directory
- Create your cert.json file (see below), save it into your project directory (or for testing, SparrowCert.Runner project directory)
- Run
dotnet build
to build the project - Run
dotnet run
to start the service
Configuration
The service is configured through a cert.json
file. Here is an example configuration:
[Note] Of course, your 'cert.json' file SHOULD NOT BE in your repository.
{
"Domains": [
"www.own-domain.org",
"api.own-domain.org" // your domain name (include sub-domains, if you have)
],
"Email": "your@email.address", // your email address for Let's Encrypt account
"RenewBeforeExpiry": "30.00:00:00", // renew 30 days before expiry (default 30 days)
"RenewAfterIssued": "80.00:00:00", // renew 80 days after issued (default null, which means do nothing)
"UseStaging": true, // trying with Let's Encrypt Staging first
"CertSigningRequest": {
"CountryName": "CA", // your country code
"State": "Ontario", // your state
"Locality": "Toronto", // your city
"Organization": "Acme Inc.", // your organization name
"OrganizationUnit": "IT", // your organization unit (department)
"CommonName": "own-domain.org" // your domain name (primary domain)
},
"RenewalFailMode": 1, // 0: unhandled, 1: continue, 2: retry
"KeyAlgorithm": 1, // 0: RSA256, 1: ES256, 2: ES384, 3: ES512
"RenewalStartupDelay": "00:00:00", // delay on startup before renewing
"HttpPort": 5080, // for NAT, customizable HTTP port (80 -> i.e. 5080)
"HttpsPort": 5443, // for NAT, customizable HTTPS port (443 -> i.e. 5443)
"CertFriendlyName": "own-domain.org",
"StorePath": "/sparrow-cert/", // where to store the new certificates (typically, with K8s Persistent Volume)
"CertPwd": "your-cert-password", // your certificate password when it is issued (or renewed)
"Notify": {
"Slack": {
"Enabled": true, // default false, discarded if not enabled
"Channels": [ "T0*******HZ" ], // your Slack channel IDs for notification (get it from Slack channel details)
"Token": "<your-slack-token>", // your Slack token, typically starts with 'xoxb-'
"Body": "\n\n\nPlease store the attachment securely, and take the necessary action accordingly.\n\n\n"
},
"Email": {
"Enabled": true, // default false, discarded if not enabled
"SenderName": "cert-bot", // your sender name
"SenderEmail": "<your@email.address>",
"Recipient": "<recipient@email.address>",
"SmtpHost": "<your-smtp-server>",
"SmtpPort": 587, // your SMTP port, typically 587
"SmtpUser": "<your-smtp-user-name>",
"SmtpPwd": "<your-smtp-password>",
"Html": false,
"Body": "\n\n\nPlease store the attachment securely, and take the necessary action accordingly.\n\n\n"
}
}
}
How to integrate into your project
public static void Main(string[] args) {
....
// Load the configuration from the 'cert.json' file
var configPath = "<path to your 'cert.json' file>";
var config = CertJsonConfiguration.FromFile(configPath);
var buildArgs = SparrowCertStartup.SetConfiguration(config);
CreateWebHostBuilder(buildArgs).Build().Run();
}
private static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
....
// Use Kestrel with custom configuration
.UseKestrel(o => {
o.ListenAnyIP(args.HttpPort);
o.ListenAnyIP(args.HttpsPort, listenOptions => {
listenOptions.UseHttps(SelfSignedCertGenerator.GenerateCertificate(args.Domain));
});
})
.UseStartup<SparrowCertStartup>(); // Or, add your Startup that is inherited from SparrowCertStartup
Credit
This project is started from reviewing and trying to utilize FluffySpoon.AspNet.EncryptWeMust and Certes, ended-up refactoring quite a bit for my use cases. Kudos to the authors for the initial implementation.
References
All the credit for pioneering the approach goes to the authors. I just updated the code for my use cases, and hopping this useful to others.
- Certes: This is the library that I used for the certificate generation and renewal.
- FluffySpoon.AspNet.EncryptWeMust: This is the first implementation of using Kestrel for ACME renewal.
- Let's Encrypt
Dependencies
To do
- Add integration test
- Check with mobile devices (iOS, Android) for the certificate compatibility ECDHE-RSA-AES256-GCM-SHA384
- Add certificate renewal notice as Slack message (including delivery of new certificate to the channel)
- Thinking it runs as one certificate renewal service for multiple services (i.e. as a sidecar container)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- certes (>= 3.0.4)
- Microsoft.AspNetCore.Connections.Abstractions (>= 8.0.7)
- Microsoft.AspNetCore.Hosting.WindowsServices (>= 8.0.7)
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.2.0)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.1)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.IdentityModel.Protocols (>= 8.0.1)
- SharpOpenNat (>= 4.0.3)
- sparrow-upnp (>= 1.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.36 | 67 | 10/21/2024 |
1.1.35 | 72 | 10/16/2024 |
1.1.34 | 115 | 8/30/2024 |
1.1.33 | 121 | 8/21/2024 |
1.1.32 | 106 | 8/20/2024 |
1.1.31 | 103 | 8/20/2024 |
1.1.30 | 107 | 8/20/2024 |
1.1.29 | 108 | 8/18/2024 |
1.1.28 | 110 | 8/18/2024 |
1.1.27 | 110 | 8/17/2024 |
1.1.26 | 106 | 8/17/2024 |
1.1.25 | 109 | 8/16/2024 |
1.1.24 | 67 | 8/5/2024 |
1.1.23 | 66 | 8/5/2024 |
1.1.22 | 66 | 8/5/2024 |
1.1.21 | 64 | 8/5/2024 |
1.1.20 | 72 | 8/5/2024 |
1.1.19 | 67 | 8/5/2024 |
1.1.18 | 67 | 8/5/2024 |
1.1.17 | 60 | 8/3/2024 |
1.1.16 | 59 | 8/2/2024 |
1.1.15 | 64 | 8/2/2024 |
1.1.14 | 58 | 8/2/2024 |
1.1.13 | 73 | 8/1/2024 |
1.1.12 | 77 | 8/1/2024 |
1.1.11 | 76 | 8/1/2024 |
1.1.10 | 98 | 7/13/2024 |
1.1.6 | 86 | 7/12/2024 |
1.1.5 | 87 | 7/12/2024 |
1.1.4 | 81 | 7/11/2024 |
1.1.3 | 75 | 7/11/2024 |
1.1.2 | 81 | 7/11/2024 |
1.0.3 | 103 | 7/3/2024 |
1.0.2 | 89 | 7/3/2024 |
1.0.1 | 105 | 6/29/2024 |
1.0.0 | 122 | 6/28/2024 |