Merge pull request #1802 from concourse/pr/static-public-key-sync
Add constructor for static key strategy
This commit is contained in:
commit
d4c3a3505d
@ -2,6 +2,7 @@ package server
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"crypto/rsa"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@ -172,6 +173,13 @@ func NewServer(ctx context.Context, c Config) (*Server, error) {
|
|||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewServerWithKey constructs a server from the provided config and a static signing key.
|
||||||
|
func NewServerWithKey(ctx context.Context, c Config, privateKey *rsa.PrivateKey) (*Server, error) {
|
||||||
|
return newServer(ctx, c, staticRotationStrategy(
|
||||||
|
privateKey,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
func newServer(ctx context.Context, c Config, rotationStrategy rotationStrategy) (*Server, error) {
|
func newServer(ctx context.Context, c Config, rotationStrategy rotationStrategy) (*Server, error) {
|
||||||
issuerURL, err := url.Parse(c.Issuer)
|
issuerURL, err := url.Parse(c.Issuer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Reference in New Issue
Block a user