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
import (
"src.agwa.name/certspotter/ct"
"software.sslmate.com/src/certspotter/ct"
"bytes"
"crypto/sha256"
)

View File

@ -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 {

View File

@ -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")

View File

@ -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 {

View File

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

View File

@ -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) {

View File

@ -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)