Rewrite go-jose dependencies to our fork.

This commit is contained in:
Jacob Hoffman-Andrews 2015-07-24 14:14:15 -07:00
parent 7f5da3b8bc
commit 620a012c62
13 changed files with 13 additions and 14 deletions

View File

@ -12,8 +12,8 @@ import (
"time"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/miekg/dns"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
gorp "github.com/letsencrypt/boulder/Godeps/_workspace/src/gopkg.in/gorp.v1"
jose "github.com/letsencrypt/go-jose"
)
// A WebFrontEnd object supplies methods that can be hooked into

View File

@ -17,7 +17,7 @@ import (
"strings"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
jose "github.com/letsencrypt/go-jose"
)
// AcmeStatus defines the state of a given authorization

View File

@ -19,8 +19,8 @@ import (
"encoding/json"
"errors"
"fmt"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
blog "github.com/letsencrypt/boulder/log"
jose "github.com/letsencrypt/go-jose"
"hash"
"io"
"math/big"

View File

@ -8,8 +8,8 @@ package core
import (
"encoding/json"
"fmt"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/test"
"github.com/letsencrypt/go-jose"
"math"
"math/big"
"net/url"

View File

@ -21,13 +21,13 @@ import (
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/cloudflare/cfssl/ocsp"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/cloudflare/cfssl/signer/local"
_ "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/mattn/go-sqlite3"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/ca"
"github.com/letsencrypt/boulder/core"
"github.com/letsencrypt/boulder/mocks"
"github.com/letsencrypt/boulder/policy"
"github.com/letsencrypt/boulder/sa"
"github.com/letsencrypt/boulder/test"
jose "github.com/letsencrypt/go-jose"
)
type DummyValidationAuthority struct {

View File

@ -12,9 +12,9 @@ import (
"fmt"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
blog "github.com/letsencrypt/boulder/log"
jose "github.com/letsencrypt/go-jose"
)
// This file defines RPC wrappers around the ${ROLE}Impl classes,

View File

@ -10,11 +10,10 @@ import (
"testing"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
"github.com/letsencrypt/boulder/mocks"
"github.com/letsencrypt/boulder/test"
jose "github.com/letsencrypt/go-jose"
)
var log = mocks.UseMockLog()

View File

@ -17,9 +17,9 @@ import (
gorp "github.com/letsencrypt/boulder/Godeps/_workspace/src/gopkg.in/gorp.v1"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
blog "github.com/letsencrypt/boulder/log"
jose "github.com/letsencrypt/go-jose"
)
// SQLStorageAuthority defines a Storage Authority

View File

@ -16,10 +16,10 @@ import (
"time"
_ "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/mattn/go-sqlite3"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
"github.com/letsencrypt/boulder/mocks"
"github.com/letsencrypt/boulder/test"
jose "github.com/letsencrypt/go-jose"
"io/ioutil"
"testing"
)

View File

@ -10,8 +10,8 @@ import (
"errors"
"fmt"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
gorp "github.com/letsencrypt/boulder/Godeps/_workspace/src/gopkg.in/gorp.v1"
jose "github.com/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/core"
)

View File

@ -12,7 +12,7 @@ import (
"github.com/letsencrypt/boulder/core"
"github.com/letsencrypt/boulder/test"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
jose "github.com/letsencrypt/go-jose"
)
const JWK1JSON = `{

View File

@ -23,9 +23,9 @@ import (
"time"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/cactus/go-statsd-client/statsd"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
blog "github.com/letsencrypt/boulder/log"
jose "github.com/letsencrypt/go-jose"
)
// Paths are the ACME-spec identified URL path-segments for various methods

View File

@ -28,8 +28,8 @@ import (
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/cactus/go-statsd-client/statsd"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/letsencrypt/boulder/core"
jose "github.com/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/mocks"
"github.com/letsencrypt/boulder/ra"