forked from wagslane/go-password-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entropy.go
47 lines (40 loc) · 1011 Bytes
/
entropy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package passwordvalidator
import (
"math"
)
// GetEntropy returns the entropy in bits for the given password
// See the ReadMe for more information
func GetEntropy(password string) float64 {
return getEntropy(password)
}
func getEntropy(password string) float64 {
base := getBase(password)
length := getLength(password)
// calculate log2(base^length)
return logPow(float64(base), length, 2)
}
func logX(base, n float64) float64 {
if base == 0 {
return 0
}
// change of base formulae
return math.Log2(n) / math.Log2(base)
}
func logBaseTo2(base, n float64) float64 {
if base == 0 {
return 0
}
// change of base formulae
return math.Log2(n) / math.Log2(base)
}
// logPow calculates log_base(x^y)
// without leaving logspace for each multiplication step
// this makes it take less space in memory
func logPow(expBase float64, pow int, logBase float64) float64 {
// logb (MN) = logb M + logb N
total := 0.0
for i := 0; i < pow; i++ {
total += logX(logBase, expBase)
}
return total
}