TlsCertificateLoader 2.2.10

dotnet add package TlsCertificateLoader --version 2.2.10
NuGet\Install-Package TlsCertificateLoader -Version 2.2.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TlsCertificateLoader" Version="2.2.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TlsCertificateLoader --version 2.2.10
#r "nuget: TlsCertificateLoader, 2.2.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TlsCertificateLoader as a Cake Addin
#addin nuget:?package=TlsCertificateLoader&version=2.2.10

// Install TlsCertificateLoader as a Cake Tool
#tool nuget:?package=TlsCertificateLoader&version=2.2.10

TlsCertificateLoader TlsCertificateLoader

GitHub Workflow Status Nuget Nuget

Allows loading of TLS (HTTPS) certificates for .NET 6.0/7.0/8.0 Kestrel web applications, allowing for refreshing of certificates as well as compatibility with HTTP/3. Fully compatible with certificates obtained by Certbot (see sample project without middleware or see sample project using middleware).

Installation

The recommended means is to use NuGet, but you could also download the source code from here.

Usage without middleware

TlsCertificateLoader.TlsCertificateLoader tlsCertificateLoader = new(fullChainPemFilePath, privateKeyPemFilePath);
options.ListenAnyIp(433, o =>
{
     o.SetTlsHandshakeCallbackOptions(tlsCertificateLoader);
     o.SetHttpsConnectionAdapterOptions(tlsCertificateLoader);
     o.Protocols = HttpProtocols.Http1AndHttp2AndHttp3;
});

And to refresh (eg either on a Timer or watching a directory via PhysicalFileProvider):

tlsCertificateLoader.RefreshDefaultCertificates();

You may also add additional certificate collection for other hostnames (for example if you want to set up mydomain.tld as your default certificate and www.mydomain.tld as your alternate one):

tlsCertificateLoader.AddAdditionalCertificates("www.mydomain.tld", fullChainWwwPemFilePath, privateKeyWwwPemFilePath);

And to refresh additional certificate collections (eg either on a Timer or watching a directory via PhysicalFileProvider):

tlsCertificateLoader.RefreshAdditionalCertificates("www.mydomain.tld");

A sample project using Certbot is available.

Usage with Certbot middleware

Refer to the sample project using Certbot using middleware.

Credits

David Fowler for this idea.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.2.10 380 12/5/2023
2.2.9 532 2/13/2023
2.2.8 374 1/29/2023
2.2.5 439 12/16/2022
2.2.4 322 12/13/2022
2.2.0 292 12/13/2022
2.1.2 314 12/12/2022
2.1.1 448 11/19/2022
2.0.8 452 9/17/2022
2.0.7 457 6/29/2022
2.0.6 474 3/13/2022
2.0.5 416 3/13/2022
2.0.3 424 3/12/2022
2.0.2 415 3/11/2022
2.0.1 325 11/27/2021
1.1.7 306 11/27/2021
1.1.4 726 11/21/2021
1.1.3 374 11/14/2021
1.1.2 405 11/14/2021
1.1.1 308 11/13/2021
1.1.0 309 11/12/2021
1.0.5 300 11/10/2021
1.0.4 307 11/9/2021
1.0.3 365 11/9/2021
1.0.2 444 11/7/2021
1.0.0 461 11/6/2021

Dropped dependency; Updated tests to .NET 8.0.