Browse Source

update canonical import path

master v0.5.2
AJ ONeal 4 years ago
parent
commit
e4ff8ac55b
  1. 2
      doc.go
  2. 2
      go.mod
  3. 4
      keyfetch/fetch.go
  4. 4
      keyfetch/fetch_test.go
  5. 2
      keyfetch/uncached/fetch.go
  6. 2
      keyfetch/uncached/fetch_test.go
  7. 2
      keyserve/doc.go
  8. 2
      keyserve/keyserve.go
  9. 2
      keyserve/keyserve_test.go

2
doc.go

@ -17,7 +17,7 @@ Convenience functions are available which will fetch keys
(or retrieve them from cache) via OIDC, .well-known/jwks.json, and direct urls.
All keys are cached by Thumbprint, as well as kid(@issuer), if available.
import "github.com/big-squid/go-keypairs/keyfetch"
import "git.rootprojects.org/root/keypairs/keyfetch"
pubs, err := keyfetch.OIDCJWKs("https://example.com/")
pubs, err := keyfetch.OIDCJWK(ThumbOrKeyID, "https://example.com/")

2
go.mod

@ -1,3 +1,3 @@
module github.com/big-squid/go-keypairs
module git.rootprojects.org/root/keypairs
go 1.12

4
keyfetch/fetch.go

@ -19,8 +19,8 @@ import (
"sync"
"time"
keypairs "github.com/big-squid/go-keypairs"
"github.com/big-squid/go-keypairs/keyfetch/uncached"
"git.rootprojects.org/root/keypairs"
"git.rootprojects.org/root/keypairs/keyfetch/uncached"
)
// TODO should be ErrInvalidJWKURL

4
keyfetch/fetch_test.go

@ -4,8 +4,8 @@ import (
"testing"
"time"
keypairs "github.com/big-squid/go-keypairs"
"github.com/big-squid/go-keypairs/keyfetch/uncached"
"git.rootprojects.org/root/keypairs"
"git.rootprojects.org/root/keypairs/keyfetch/uncached"
)
var pubkey keypairs.PublicKey

2
keyfetch/uncached/fetch.go

@ -12,7 +12,7 @@ import (
"strings"
"time"
keypairs "github.com/big-squid/go-keypairs"
"git.rootprojects.org/root/keypairs"
)
// OIDCJWKs gets the OpenID Connect configuration from the baseURL and then calls JWKs with the specified jwks_uri

2
keyfetch/uncached/fetch_test.go

@ -6,7 +6,7 @@ import (
"errors"
"testing"
keypairs "github.com/big-squid/go-keypairs"
"git.rootprojects.org/root/keypairs"
)
func TestJWKs(t *testing.T) {

2
keyserve/doc.go

@ -12,7 +12,7 @@ Basic Usage
"crypto/rand"
"time"
"github.com/big-squid/go-keypairs/keyserve"
"git.rootprojects.org/root/keypairs/keyserve"
)
key, _ := ecdsa.GenerateKey(elliptic.P256, rand.Reader)

2
keyserve/keyserve.go

@ -11,7 +11,7 @@ import (
"strings"
"time"
keypairs "github.com/big-squid/go-keypairs"
"git.rootprojects.org/root/keypairs"
)
// DefaultExpiresIn is 3 days

2
keyserve/keyserve_test.go

@ -13,7 +13,7 @@ import (
"testing"
"time"
keypairs "github.com/big-squid/go-keypairs"
"git.rootprojects.org/root/keypairs"
)
func TestServeKeys(t *testing.T) {

Loading…
Cancel
Save