Code Monkey home page Code Monkey logo

powerumc.aspnetcore.hmac's Introduction

Powerumc.AspNetCore.Hmac

Install

Install-Package Powerumc.AspNetCore.Hmac -Version 1.0.0

or

dotnet add package Powerumc.AspNetCore.Hmac --version 1.0.0

Configuration

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);

        // Add Hmac HttpClient Factory
        services.AddHmacHttpClientFactory(options => options.SecretKey = Configuration["SecretKey"]);
    }
}

Usage

WebApi-1

[Route("tests")]
[ApiController]
public class TestsController : Controller
{
    private readonly IHmacHttpClientFactory _httpClientFactory;

    public TestsController(IHmacHttpClientFactory httpClientFactory)
    {
        _httpClientFactory = httpClientFactory;
    }


    [HttpGet]
    public async Task<ActionResult<string>> Get()
    {
        using (var httpClient = _httpClientFactory.Create("data"))
        {
            httpClient.BaseAddress = new Uri("http://localhost:5112");

            var response = await httpClient.GetAsync("/tests/headers");
            response.EnsureSuccessStatusCode();

            return await response.Content.ReadAsStringAsync();
        }
    }
}

WebApi-2

[Route("tests")]
[ApiController]
public class TestsController : Controller
{
    [HttpGet("headers")]
    [TypeFilter(typeof(HmacAuthorization))]
    public ActionResult<IEnumerable<string>> GetHeaders()
    {
        return Request.Headers.Select(o => $"{o.Key}={o.Value}").ToList();
    }
}

WebApi-1 Response

[
    "Host=localhost:5112",
    "X-Hmac-Hash=4mwXUe457nbYR4EdOm94/wcGLKkABKE/qJYjeN3y5YI=",
    "X-Hmac-Data=eyJ0aW1lIjoxNTMxMzEyNTAzMTQ0fQ=="
]

powerumc.aspnetcore.hmac's People

Contributors

powerumc avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.