Rewrite go-jose dependencies to our fork.
This commit is contained in:
		
							parent
							
								
									7f5da3b8bc
								
							
						
					
					
						commit
						620a012c62
					
				| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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 {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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 = `{
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue