Skip to content

Commit

Permalink
Use latest version of jose
Browse files Browse the repository at this point in the history
  • Loading branch information
matteosuppo committed May 18, 2017
1 parent 42c488c commit 0f17669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (m CachedKeyManager) GetRSAPublic(set string) (*rsa.PublicKey, error) {
return nil, errors.Annotatef(err, "new request for %s", url)
}

var keyset jose.JsonWebKeySet
var keyset jose.JSONWebKeySet
err = bind(m.Client, req, &keyset)
if err != nil {
return nil, err
Expand Down Expand Up @@ -91,7 +91,7 @@ func (m CachedKeyManager) GetRSAPrivate(set string) (*rsa.PrivateKey, error) {
return nil, errors.Annotatef(err, "new request for %s", url)
}

var keyset jose.JsonWebKeySet
var keyset jose.JSONWebKeySet
err = bind(m.Client, req, &keyset)
if err != nil {
return nil, err
Expand Down

0 comments on commit 0f17669

Please sign in to comment.