misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2019-01-28 17:38:03 +01:00
commit 116e6e19dd
No known key found for this signature in database
GPG key ID: 1564D7F30393A456

View file

@ -17,10 +17,10 @@ var mutators = []func(byte) byte{
return byte(rand.Intn(256) & 0xff)
},
func(b byte) byte {
return byte(b << uint(rand.Intn(5)))
return byte(b << uint(rand.Intn(9)))
},
func(b byte) byte {
return byte(b >> uint(rand.Intn(5)))
return byte(b >> uint(rand.Intn(9)))
},
}