Converter matriz de tamanho fixo em matriz de tamanho variável no Go

Estou tentando converter uma matriz de tamanho fixo[32]byte para matriz de tamanho variável (fatia)[]byte:

package main

import (
        "fmt"
)

func main() {
        var a [32]byte
        b := []byte(a)
        fmt.Println(" %x", b)
}

mas o compilador lança o erro:

./test.go:9: cannot convert a (type [32]byte) to type []byte

Como devo convertê-lo?