Browse Source

some spelling fixes, rolling index scenarios, and fine tuning

bmallred 10 years ago
parent
commit
1d2edad0bd
4 changed files with 34 additions and 8 deletions
  1. 12 1
      main.go
  2. 9 2
      main_test.go
  3. 5 2
      resources.go
  4. 8 3
      site.go

+ 12 - 1
main.go

@ -3,6 +3,7 @@ package main
3 3
import (
4 4
	"log"
5 5
	"net/http"
6
	"os"
6 7
)
7 8
8 9
func main() {
@ -14,5 +15,15 @@ func main() {
14 15
	http.HandleFunc("/book", BookHandler)
15 16
	http.HandleFunc("/", DefaultHandler)
16 17
17
	log.Fatal(http.ListenAndServe("localhost:8080", nil))
18
	log.Fatal(http.ListenAndServe(address(), nil))
19
}
20
21
// Retrieve the web server address from the environment variable ENIGMA_SERVER if possible.
22
// If the environment variable is not set then default to "localhost:8080".
23
func address() string {
24
	env := os.Getenv("ENIGMA_SERVER")
25
	if env == "" {
26
		return "localhost:8080"
27
	}
28
	return env
18 29
}

+ 9 - 2
main_test.go

@ -19,9 +19,9 @@ func TestGeneratePassphrase(t *testing.T) {
19 19
	}
20 20
	i := 0
21 21
22
	expected := "C\\041|e1dc001da138"
22
	expected := "Ce\\41ae|dc001da138"
23 23
	for i = 0; i < 2; i++ {
24
		b, _ := generatePassphrase(profile, passphrase, site)
24
		b := site.generatePassphrase(profile, passphrase)
25 25
		actual := fmt.Sprintf("%s", string(b))
26 26
		if actual != expected {
27 27
			t.FailNow()
@ -88,6 +88,13 @@ func TestContainsSpecialCharacters(t *testing.T) {
88 88
	if actual != expected {
89 89
		t.FailNow()
90 90
	}
91
92
	special = " "
93
	expected = true
94
	actual = containsSpecialCharacters([]byte("Blah BLa l "), special, 2)
95
	if actual != expected {
96
		t.FailNow()
97
	}
91 98
}
92 99
93 100
func TestLength(t *testing.T) {

+ 5 - 2
resources.go

@ -106,6 +106,9 @@ const (
106 106
        .tab-content > .tab-pane {
107 107
            padding: 1em;
108 108
        }
109
		span.password {
110
			margin-left: 1em;
111
		}
109 112
    </style>
110 113
111 114
    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
@ -154,7 +157,7 @@ const (
154 157
                                        <input name="host" type="hidden" value="{{ .Host }}" />
155 158
										<button class="btn btn-default btn-xs" title="Generate a new password"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span></button>
156 159
                                    </form>
157
                                    <span>{{ .Password }}</span>
160
                                    <span class="password">{{ .Password }}</span>
158 161
                                </td>
159 162
                                <td class="text-right">
160 163
                                    <form class="form form-horizontal" action="/api/remove" method="post">
@ -311,7 +314,7 @@ const (
311 314
                                    <button name="cmd" value="update" type="submit" class="btn btn-default" title="Update profile passphrase">Update Passphrase</button>
312 315
                                </div>
313 316
                                <div class="col-xs-3 text-right">
314
									<button name="cmd" value="delete" type="submit" class="btn btn-danger" title="Permanenantly delete this account">Delete Profile</button>
317
									<button name="cmd" value="delete" type="submit" class="btn btn-danger" title="Permanently delete this account">Delete Profile</button>
315 318
                                </div>
316 319
                            </div>
317 320
                        </form>

+ 8 - 3
site.go

@ -4,6 +4,7 @@ import (
4 4
	"crypto/sha512"
5 5
	"fmt"
6 6
	"log"
7
	"math"
7 8
	"regexp"
8 9
	"strings"
9 10
)
@ -37,6 +38,7 @@ func (s *Site) generatePassphrase(profile, passphrase string) []byte {
37 38
38 39
func (s *Site) applyCriteria(sha []byte) []byte {
39 40
	hash := []byte(fmt.Sprintf("%x", sha))
41
	hashUpper := []byte(fmt.Sprintf("%X", sha))
40 42
41 43
	if !containsUppercase(hash, s.NumberOfUpperCase) {
42 44
		i := 0
@ -46,7 +48,7 @@ func (s *Site) applyCriteria(sha []byte) []byte {
46 48
		if matches = r.FindAllIndex(hash, -1); matches != nil {
47 49
			for _, v := range matches {
48 50
				if i < s.NumberOfUpperCase {
49
					c := strings.ToUpper(string(hash[v[0]]))
51
					c := string(hashUpper[v[0]])
50 52
					hash[v[0]] = []byte(c)[0]
51 53
					i += 1
52 54
				}
@ -62,7 +64,8 @@ func (s *Site) applyCriteria(sha []byte) []byte {
62 64
		if matches = r.FindAllIndex(hash, -1); matches != nil {
63 65
			for _, v := range matches {
64 66
				if i < s.NumberOfDigits {
65
					hash[v[0]] = byte(i)
67
					ceiling := float64(10)
68
					hash[v[0]] = byte(ceiling - math.Mod(float64(i), ceiling) - 1)
66 69
					i += 1
67 70
				}
68 71
			}
@ -72,13 +75,15 @@ func (s *Site) applyCriteria(sha []byte) []byte {
72 75
	if !containsSpecialCharacters(hash, s.SpecialCharacters, s.NumberOfSpecialCharacters) {
73 76
		i := 0
74 77
		r := regexp.MustCompile(`[0-9]+`)
78
		l := len(s.SpecialCharacters)
75 79
76 80
		var matches [][]int
77 81
		if matches = r.FindAllIndex(hash, -1); matches != nil {
78 82
			for _, v := range matches {
79 83
				if i < s.NumberOfSpecialCharacters {
80 84
					i += 1
81
					hash[v[0]] = []byte(s.SpecialCharacters)[len(s.SpecialCharacters)-i]
85
					idx := l - int(math.Mod(float64(i), float64(l)))
86
					hash[v[0]] = []byte(s.SpecialCharacters)[idx]
82 87
				}
83 88
			}
84 89
		}