Redpoint.Tpm 2026.1161.947

Prefix Reserved
dotnet add package Redpoint.Tpm --version 2026.1161.947
                    
NuGet\Install-Package Redpoint.Tpm -Version 2026.1161.947
                    
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="Redpoint.Tpm" Version="2026.1161.947" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.Tpm" Version="2026.1161.947" />
                    
Directory.Packages.props
<PackageReference Include="Redpoint.Tpm" />
                    
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 Redpoint.Tpm --version 2026.1161.947
                    
#r "nuget: Redpoint.Tpm, 2026.1161.947"
                    
#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.
#:package Redpoint.Tpm@2026.1161.947
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Redpoint.Tpm&version=2026.1161.947
                    
Install as a Cake Addin
#tool nuget:?package=Redpoint.Tpm&version=2026.1161.947
                    
Install as a Cake Tool

Redpoint.Tpm

Provides APIs for securing HTTPS communications using attestation identity keys stored in a TPM. This can be used by servers to ensure that the client connecting to them is the machine they claim to be.

Example

On the server, assuming that you already have a certificate authority that can be used for generating client certificates:

// Create the API that allows you to secure HTTPS with TPM attested certificates.
_tpmSecuredHttpServer = tpmSecuredHttpService.CreateHttpServer(certificateAuthority);

// Configure Kestrel's HTTPS options...
kestrelOptions.ListenLocalhost(8791, options =>
{
    options.UseHttps(https =>
    {
        _tpmSecuredHttpServer.ConfigureHttps(https);
    });
});

// In a negotiation endpoint, handle the negotiation...
if (httpContext.Request.Path == "/negotiate")
{
    await _tpmSecuredHttpServer!.HandleNegotiationRequestAsync(httpContext);
}

// In an endpoint you want to verify the identity of the connecting client...
var pem = await _tpmSecuredHttpServer!.GetAikPemVerifiedByClientCertificateAsync(httpContext);

// 'pem' will contain the PEM of the attestation identity key.

On the client:

// Create the client; the URI should be that of the negotiation endpoint of the server.
var client = await tpmSecuredHttpService.CreateHttpClientAsync(
    new Uri("http://127.0.0.1:8790/negotiate"),
    cancellationToken);

// Use the client to call HTTPS endpoints. The server in the /test endpoint should call
// GetAikPemVerifiedByClientCertificateAsync to get the PEM and verify the client.
var result = await client.GetStringAsync(
    new Uri("https://127.0.0.1:8791/test"),
    cancellationToken);
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Redpoint.Tpm:

Package Downloads
Redpoint.KubernetesManager

Implements a Kubernetes manager, which can provision and set up Kubernetes on Windows, macOS and Linux machines.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.1161.947 51 6/10/2026
2026.1159.820 101 6/8/2026
2026.1159.804 100 6/8/2026
2026.1159.544 103 6/8/2026
2026.1159.510 107 6/8/2026
2026.1154.870 106 6/3/2026
2026.1154.811 98 6/3/2026
2026.1154.803 106 6/3/2026
2026.1154.686 105 6/3/2026
2026.1154.457 108 6/3/2026
2026.1153.1025 95 6/2/2026
2026.1153.1010 115 6/2/2026
2026.1153.988 107 6/2/2026
2026.1153.959 107 6/2/2026
2026.1153.916 106 6/2/2026
2026.1153.661 103 6/2/2026
2026.1148.1138 113 5/28/2026
2026.1146.78 107 5/26/2026
2026.1145.557 105 5/25/2026
2026.1145.536 104 5/25/2026
Loading failed