Move package to software.sslmate.com/src/certspotter

This commit is contained in:
Andrew Ayer 2016-05-04 12:19:59 -07:00
parent 1e582e2e0c
commit b79cb31413
7 changed files with 13 additions and 13 deletions

View File

@ -10,7 +10,7 @@
package certspotter package certspotter
import ( import (
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
"bytes" "bytes"
"crypto/sha256" "crypto/sha256"
) )

View File

@ -18,9 +18,9 @@ import (
"golang.org/x/net/idna" "golang.org/x/net/idna"
"src.agwa.name/certspotter" "software.sslmate.com/src/certspotter"
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
"src.agwa.name/certspotter/cmd" "software.sslmate.com/src/certspotter/cmd"
) )
func DefaultStateDir () string { func DefaultStateDir () string {

View File

@ -23,8 +23,8 @@ import (
"time" "time"
"strconv" "strconv"
"src.agwa.name/certspotter" "software.sslmate.com/src/certspotter"
"src.agwa.name/certspotter/ct" "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") var batchSize = flag.Int("batch_size", 1000, "Max number of entries to request at per call to get-entries")

View File

@ -13,9 +13,9 @@ import (
"flag" "flag"
"os" "os"
"src.agwa.name/certspotter" "software.sslmate.com/src/certspotter"
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
"src.agwa.name/certspotter/cmd" "software.sslmate.com/src/certspotter/cmd"
) )
func DefaultStateDir () string { func DefaultStateDir () string {

View File

@ -22,7 +22,7 @@ import (
"net/http" "net/http"
"time" "time"
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
"github.com/mreiferson/go-httpclient" "github.com/mreiferson/go-httpclient"
) )

View File

@ -26,7 +26,7 @@ import (
"encoding/pem" "encoding/pem"
"encoding/json" "encoding/json"
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
) )
func ReadSTHFile (path string) (*ct.SignedTreeHead, error) { func ReadSTHFile (path string) (*ct.SignedTreeHead, error) {

View File

@ -19,8 +19,8 @@ import (
"crypto" "crypto"
"errors" "errors"
"src.agwa.name/certspotter/ct" "software.sslmate.com/src/certspotter/ct"
"src.agwa.name/certspotter/ct/client" "software.sslmate.com/src/certspotter/ct/client"
) )
type ProcessCallback func(*Scanner, *ct.LogEntry) type ProcessCallback func(*Scanner, *ct.LogEntry)