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