Giter Site home page Giter Site logo

go-jwk-security's Introduction

Go Fiber - JWK for Auth

๐Ÿ” It's unofficial middleware for Go Fiber

Specials thanks for Go Fiber JWT GoFiber/JWT

๐Ÿ“ฆ What's in the box?

This is for get signature Json Web Key (JWK) RFC 7517 JSON Web Key (JWK) and save signature.

jwt.JwtMiddleware(config ...Config) func(*fiber.Ctx)

๐Ÿ†™ API

Coming soon!

๐Ÿ”ฝ Get Dependencies

go get -u github.com/juandiii/go-jwk-security/v2

๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Example

package main

import (
	"fmt"

	"github.com/gofiber/fiber/v2"
	"github.com/juandiii/go-jwk-security/v2/jwt"
	"github.com/juandiii/go-jwk-security/v2/security"
)

type Server struct {
	JwtKey *security.JwtKeys
}

func main() {
	server := &Server{JwtKey: &security.JwtKeys{JwtURL: "https://sso.example.net/realm/protocol/openid-connect/certs"}}
	err := server.JwtKey.GetKeys()

	if err != nil {
		fmt.Println(err)
		return
	}

	app := fiber.New()

	app.Use(jwt.JwtMiddleware(jwt.Config{
		KeyFunc: server.JwtKey.GetKey,
	}))

	app.Get("/", func(c *fiber.Ctx) error {

		return nil
	})

	app.Listen(":3000")
}

โœ… TODO:

  1. Improve or clean code
  2. Add more functions
  3. Fetch Certs after 24h expiration

go-jwk-security's People

Contributors

juandiii avatar marco-bor 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.