Archives

Sign-in using multiple clients or tenants in ASP.NET Core and Azure AD

The article shows how an ASP.NET Core application could implement a sign in and a sign out with two different Azure App registrations which could also be implemented using separate identity providers (tenants). The user of the application can decide to authenticate against either one of the Azure AD clients. The clients can also be […]

Using Certificate Authentication with IHttpClientFactory and HttpClient

This article shows how an HttpClient instance could be setup to send a certificate to an API to use for certificate authentication. In an ASP.NET Core application, the IHttpClientFactory can be used to get an instance of the HttpClient. Code https://github.com/damienbod/Secure_gRpc/tree/master/SecureGrpc.ManagedClient Posts in this series Certificate Authentication in ASP.NET Core 3.0 (Self Signed) Using Chained […]