keystore

package
v0.0.0-...-53b8cb7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 24, 2024 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

Package keystore implements the auth.KeyLookup interface. This implements an in-memory keystore for JWT support.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type KeyStore

type KeyStore struct {
	// contains filtered or unexported fields
}

KeyStore represents an in memory store implementation of the KeyLookup interface for use with the auth package.

func New

func New(log *logger.Logger) *KeyStore

New constructs an empty KeyStore ready for use.

func (*KeyStore) LoadAuthKeys

func (ks *KeyStore) LoadAuthKeys(folder string) error

LoadAuthKeys loads a set of RSA PEM files rooted inside of a directory. The name of each PEM file will be used as the key id.

func (*KeyStore) LoadBankKeys

func (ks *KeyStore) LoadBankKeys(folder string, passPhrase string) error

LoadBankKeys loads a set of password protected ECDSA key files rooted inside of a directory. The last section of the name for each file will be used as the key id.

func (*KeyStore) PrivateKey

func (ks *KeyStore) PrivateKey(kid string) (string, error)

PrivateKey searches the key store for a given kid and returns the private key.

func (*KeyStore) PublicKey

func (ks *KeyStore) PublicKey(kid string) (string, error)

PublicKey searches the key store for a given kid and returns the public key.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL