I want to secure an ASP.NET Web API project with HMAC auth.
This REST API project will be used by third-party developers to access my application's data.
I'm trying to adapt this post in .NET Core without success...
Some of the class / interface used don't exist anymore (ex: IAuthenticationFilter, HttpAuthenticationContext, HttpAuthenticationContext, IHttpActionResult)
How can I add a sample HmacAuthentication attribute to my API methods in order to protect them with HMACSHA256 ?
Thanks for your answers!