diff --git a/auditing.go b/auditing.go index 4938130..781834c 100644 --- a/auditing.go +++ b/auditing.go @@ -10,7 +10,7 @@ package certspotter import ( - "src.agwa.name/certspotter/ct" + "software.sslmate.com/src/certspotter/ct" "bytes" "crypto/sha256" ) diff --git a/cmd/certspotter/main.go b/cmd/certspotter/main.go index b397c3f..354b2e7 100644 --- a/cmd/certspotter/main.go +++ b/cmd/certspotter/main.go @@ -18,9 +18,9 @@ import ( "golang.org/x/net/idna" - "src.agwa.name/certspotter" - "src.agwa.name/certspotter/ct" - "src.agwa.name/certspotter/cmd" + "software.sslmate.com/src/certspotter" + "software.sslmate.com/src/certspotter/ct" + "software.sslmate.com/src/certspotter/cmd" ) func DefaultStateDir () string { diff --git a/cmd/common.go b/cmd/common.go index 750512e..9363ed2 100644 --- a/cmd/common.go +++ b/cmd/common.go @@ -23,8 +23,8 @@ import ( "time" "strconv" - "src.agwa.name/certspotter" - "src.agwa.name/certspotter/ct" + "software.sslmate.com/src/certspotter" + "software.sslmate.com/src/certspotter/ct" ) var batchSize = flag.Int("batch_size", 1000, "Max number of entries to request at per call to get-entries") diff --git a/cmd/ctparsewatch/main.go b/cmd/ctparsewatch/main.go index 8a2e2ee..a66fe9e 100644 --- a/cmd/ctparsewatch/main.go +++ b/cmd/ctparsewatch/main.go @@ -13,9 +13,9 @@ import ( "flag" "os" - "src.agwa.name/certspotter" - "src.agwa.name/certspotter/ct" - "src.agwa.name/certspotter/cmd" + "software.sslmate.com/src/certspotter" + "software.sslmate.com/src/certspotter/ct" + "software.sslmate.com/src/certspotter/cmd" ) func DefaultStateDir () string { diff --git a/ct/client/logclient.go b/ct/client/logclient.go index 69f4b3c..2b18acf 100644 --- a/ct/client/logclient.go +++ b/ct/client/logclient.go @@ -22,7 +22,7 @@ import ( "net/http" "time" - "src.agwa.name/certspotter/ct" + "software.sslmate.com/src/certspotter/ct" "github.com/mreiferson/go-httpclient" ) diff --git a/helpers.go b/helpers.go index a8d895f..4c1feb4 100644 --- a/helpers.go +++ b/helpers.go @@ -26,7 +26,7 @@ import ( "encoding/pem" "encoding/json" - "src.agwa.name/certspotter/ct" + "software.sslmate.com/src/certspotter/ct" ) func ReadSTHFile (path string) (*ct.SignedTreeHead, error) { diff --git a/scanner.go b/scanner.go index f18870c..532b517 100644 --- a/scanner.go +++ b/scanner.go @@ -19,8 +19,8 @@ import ( "crypto" "errors" - "src.agwa.name/certspotter/ct" - "src.agwa.name/certspotter/ct/client" + "software.sslmate.com/src/certspotter/ct" + "software.sslmate.com/src/certspotter/ct/client" ) type ProcessCallback func(*Scanner, *ct.LogEntry)