Example #1
0
func init() {
	permuter.RegisterAlgorithm("ascii", func() permuter.PermuterAlgorithm {
		return &generator{[]byte("aaaaaaaaaaa")}
	})
}
Example #2
0
func init() {
	permuter.RegisterAlgorithm("number", func() permuter.PermuterAlgorithm {
		return &generator{0}
	})
}
Example #3
0
func init() {
	permuter.RegisterAlgorithm("urandom", func() permuter.PermuterAlgorithm {
		return &generator{}
	})
}