Redpoint.Tpm
2026.1177.445
Prefix Reserved
dotnet add package Redpoint.Tpm --version 2026.1177.445
NuGet\Install-Package Redpoint.Tpm -Version 2026.1177.445
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.1177.445" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.Tpm" Version="2026.1177.445" />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.1177.445
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Redpoint.Tpm, 2026.1177.445"
#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.1177.445
#: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.1177.445Install as a Cake Addin
#tool nuget:?package=Redpoint.Tpm&version=2026.1177.445Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net10.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.9)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.9)
- NSec.Cryptography (>= 26.4.0)
- Redpoint.Kestrel (>= 2026.1177.445)
- Redpoint.ThirdParty.Microsoft.TSS (>= 2026.1177.445)
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.1177.445 | 112 | 6/26/2026 |
| 2026.1170.257 | 108 | 6/19/2026 |
| 2026.1169.464 | 118 | 6/18/2026 |
| 2026.1169.426 | 111 | 6/18/2026 |
| 2026.1169.413 | 111 | 6/18/2026 |
| 2026.1169.196 | 105 | 6/18/2026 |
| 2026.1161.947 | 124 | 6/10/2026 |
| 2026.1159.820 | 111 | 6/8/2026 |
| 2026.1159.804 | 107 | 6/8/2026 |
| 2026.1159.544 | 111 | 6/8/2026 |
| 2026.1159.510 | 112 | 6/8/2026 |
| 2026.1154.870 | 111 | 6/3/2026 |
| 2026.1154.811 | 106 | 6/3/2026 |
| 2026.1154.803 | 115 | 6/3/2026 |
| 2026.1154.686 | 111 | 6/3/2026 |
| 2026.1154.457 | 118 | 6/3/2026 |
| 2026.1153.1025 | 106 | 6/2/2026 |
| 2026.1153.1010 | 123 | 6/2/2026 |
| 2026.1153.988 | 116 | 6/2/2026 |
| 2026.1153.959 | 115 | 6/2/2026 |
Loading failed