TlsCertificateLoader 2.3.1

dotnet add package TlsCertificateLoader --version 2.3.1
                    
NuGet\Install-Package TlsCertificateLoader -Version 2.3.1
                    
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.3.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TlsCertificateLoader" Version="2.3.1" />
                    
Directory.Packages.props
<PackageReference Include="TlsCertificateLoader" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TlsCertificateLoader --version 2.3.1
                    
#r "nuget: TlsCertificateLoader, 2.3.1"
                    
#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.
#addin nuget:?package=TlsCertificateLoader&version=2.3.1
                    
Install TlsCertificateLoader as a Cake Addin
#tool nuget:?package=TlsCertificateLoader&version=2.3.1
                    
Install TlsCertificateLoader as a Cake Tool

TlsCertificateLoader TlsCertificateLoader

GitHub Workflow Status Nuget Nuget

Allows loading of TLS (HTTPS) certificates for .NET 6.0/7.0/8.0/9.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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.3.1 454 9/21/2024
2.2.10 717 12/5/2023
2.2.9 1,181 2/13/2023
2.2.8 432 1/29/2023
2.2.5 534 12/16/2022
2.2.4 375 12/13/2022
2.2.0 347 12/13/2022
2.1.2 373 12/12/2022
2.1.1 501 11/19/2022
2.0.8 507 9/17/2022
2.0.7 512 6/29/2022
2.0.6 539 3/13/2022
2.0.5 477 3/13/2022
2.0.3 477 3/12/2022
2.0.2 470 3/11/2022
2.0.1 388 11/27/2021
1.1.7 365 11/27/2021
1.1.4 788 11/21/2021
1.1.3 431 11/14/2021
1.1.2 469 11/14/2021
1.1.1 364 11/13/2021
1.1.0 371 11/12/2021
1.0.5 355 11/10/2021
1.0.4 369 11/9/2021
1.0.3 444 11/9/2021 1.0.3 is deprecated because it has critical bugs.
1.0.2 529 11/7/2021 1.0.2 is deprecated because it has critical bugs.
1.0.0 550 11/6/2021 1.0.0 is deprecated because it has critical bugs.

Dependency updates; updated tests to .NET 9.0.