Useless string conversions

Mistake

Converting strings to []byte slice when it doesn’t make sense. While strings are human friendly, []byte slices is what most functions accept as a parameter.

Fix

Use []byte slice and the relevant transforms in the bytes package.

References