package main // Checks if all bytes are zeros func allZero(s []byte) bool { for _, v := range s { if v != 0 { return false } } return true }