This seems like it would be a fairly common thing and abundant examples across the interwebs, but I can\'t seem to find an example of how to convert an [32]byte
[32]byte
This will do the trick:
slice := array[0:len(array)]
Also avoids copying the underlying buffer.