Update all references to status-im repository
This commit is contained in:
parent
08fea70a42
commit
5e86766768
|
@ -17,7 +17,7 @@ jobs:
|
|||
#### expecting it in the form of
|
||||
#### /go/src/github.com/circleci/go-tool
|
||||
#### /go/src/bitbucket.org/circleci/go-tool
|
||||
working_directory: /go/src/github.com/nbutton23/zxcvbn-go
|
||||
working_directory: /go/src/github.com/status-im/zxcvbn-go
|
||||
steps:
|
||||
- checkout
|
||||
- run: go get -u golang.org/x/lint/golint
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
"log"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/data"
|
||||
"github.com/status-im/zxcvbn-go/data"
|
||||
)
|
||||
|
||||
// Graph holds information about different graphs
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package entropy
|
||||
|
||||
import (
|
||||
"github.com/nbutton23/zxcvbn-go/adjacency"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/nbutton23/zxcvbn-go/utils/math"
|
||||
"github.com/status-im/zxcvbn-go/adjacency"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/utils/math"
|
||||
"math"
|
||||
"regexp"
|
||||
"unicode"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package entropy
|
||||
|
||||
import (
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"testing"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
"log"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/data"
|
||||
"github.com/status-im/zxcvbn-go/data"
|
||||
)
|
||||
|
||||
// List holds a frequency list
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package fuzz
|
||||
|
||||
import (
|
||||
"github.com/nbutton23/zxcvbn-go"
|
||||
"github.com/status-im/zxcvbn-go"
|
||||
)
|
||||
|
||||
// Fuzz is used to run https://github.com/dvyukov/go-fuzz
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -3,8 +3,8 @@ package matching
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
func buildDictMatcher(dictName string, rankedDict map[string]int) func(password string) []match.Match {
|
||||
|
|
|
@ -3,8 +3,8 @@ package matching
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
// L33TMatcherName id
|
||||
|
|
|
@ -3,9 +3,9 @@ package matching
|
|||
import (
|
||||
"sort"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/adjacency"
|
||||
"github.com/nbutton23/zxcvbn-go/frequency"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/adjacency"
|
||||
"github.com/status-im/zxcvbn-go/frequency"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@ package matching
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
const repeatMatcherName = "REPEAT"
|
||||
|
|
|
@ -3,8 +3,8 @@ package matching
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
const sequenceMatcherName = "SEQ"
|
||||
|
|
|
@ -3,9 +3,9 @@ package matching
|
|||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/adjacency"
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/adjacency"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
)
|
||||
|
||||
const spatialMatcherName = "SPATIAL"
|
||||
|
|
|
@ -2,9 +2,9 @@ package scoring
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/nbutton23/zxcvbn-go/entropy"
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/nbutton23/zxcvbn-go/utils/math"
|
||||
"github.com/status-im/zxcvbn-go/entropy"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/utils/math"
|
||||
"math"
|
||||
"sort"
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go"
|
||||
"github.com/status-im/zxcvbn-go"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -3,10 +3,10 @@ package zxcvbn
|
|||
import (
|
||||
"time"
|
||||
|
||||
"github.com/nbutton23/zxcvbn-go/match"
|
||||
"github.com/nbutton23/zxcvbn-go/matching"
|
||||
"github.com/nbutton23/zxcvbn-go/scoring"
|
||||
"github.com/nbutton23/zxcvbn-go/utils/math"
|
||||
"github.com/status-im/zxcvbn-go/match"
|
||||
"github.com/status-im/zxcvbn-go/matching"
|
||||
"github.com/status-im/zxcvbn-go/scoring"
|
||||
"github.com/status-im/zxcvbn-go/utils/math"
|
||||
)
|
||||
|
||||
// PasswordStrength takes a password, userInputs and optional filters and returns a MinEntropyMatch
|
||||
|
|
Loading…
Reference in New Issue