-
Notifications
You must be signed in to change notification settings - Fork 8
In memory storage
David Lievrouw edited this page Dec 19, 2025
·
4 revisions
This page describes the use of the In-Memory Storage strategy.
This strategy is registered an pre-configured when referencing the Dalion.HttpMessageSigning.Verification package. You do not need to add anything else.
dotnet add package Dalion.HttpMessageSigning.Verificationor
PM> Install-Package Dalion.HttpMessageSigning.VerificationRegister verification in your IoC container. This implies the use of the InMemory strategy. No additional configuration is needed. E.g.
public static void ConfigureServices(IServiceCollection services) {
services
...
.AddHttpMessageSignatureVerification();
}Register verification in your IoC container. This implies the use of the InMemory strategy. No additional configuration is needed. E.g.
public static void ConfigureServices(IServiceCollection services) {
services
...
.AddHttpMessageSignatureVerification();
}A sample is available in the repository source: ASP.NET Core web application (.NET 10.0)
HttpMessageSigning | David Lievrouw