Switch to our own fork of go-jose.

This is the result of `godep save -r ./...` and
`git rm -r -f Godeps/_workspace/src/github.com/square`

Our fork is currently at the head of go-jose when Richard made the local nonce
changes, with the nonce changes added on top. In other words, the newly created
files are exactly equal to the deleted files.

In a separate commit I will bring our own go-jose fork up to the remote head,
then update our deps.

Also note: Square's go-jose repo contains a `cipher` package. Since we don't
make any changes to that package, we leave it imported as-is.
This commit is contained in:
Jacob Hoffman-Andrews 2015-07-24 14:18:09 -07:00
parent 620a012c62
commit 9423467142
43 changed files with 20 additions and 16 deletions

8
Godeps/Godeps.json generated
View File

@ -72,6 +72,10 @@
"Comment": "v1.2-88-ga197e5d",
"Rev": "a197e5d40516f2e9f74dcee085a5f2d4604e94df"
},
{
"ImportPath": "github.com/letsencrypt/go-jose",
"Rev": "924fcf0aaa98274fd0d586edf64a517ebe24797e"
},
{
"ImportPath": "github.com/mattn/go-sqlite3",
"Rev": "308067797b0fcce4ca06362580dc6db77c1bfeda"
@ -85,8 +89,8 @@
"Rev": "88c9f842544e629ec046105d7fb50d5daafae737"
},
{
"ImportPath": "github.com/square/go-jose",
"Rev": "d3ba9be3fbf631c353e477ab8fba8ec04f05a8b4"
"ImportPath": "github.com/square/go-jose/cipher",
"Rev": "2f4e4fff85a98acc176ac2712c31394ac1acb7e8"
},
{
"ImportPath": "github.com/streadway/amqp",

View File

@ -22,7 +22,7 @@ import (
"os"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/codegangsta/cli"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/square/go-jose"
"github.com/square/go-jose"
)
func main() {

View File

@ -11,9 +11,9 @@ import (
"net/http"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/miekg/dns"
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/go-jose"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/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/letsencrypt/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/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/test"
"github.com/letsencrypt/go-jose"
"math"
"math/big"
"net/url"

View File

@ -20,6 +20,7 @@ import (
cfsslConfig "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/cloudflare/cfssl/config"
"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"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/letsencrypt/go-jose"
_ "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/mattn/go-sqlite3"
"github.com/letsencrypt/boulder/ca"
"github.com/letsencrypt/boulder/core"
@ -27,7 +28,6 @@ import (
"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/letsencrypt/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,10 +10,10 @@ import (
"testing"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/letsencrypt/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/letsencrypt/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

@ -15,11 +15,11 @@ import (
"net/url"
"time"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/letsencrypt/go-jose"
_ "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/mattn/go-sqlite3"
"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/letsencrypt/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/go-jose"
jose "github.com/letsencrypt/boulder/Godeps/_workspace/src/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/letsencrypt/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/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/core"
jose "github.com/letsencrypt/go-jose"
"github.com/letsencrypt/boulder/mocks"
"github.com/letsencrypt/boulder/ra"