salsa20.XORKeyStream
// XORKeyStream crypts bytes from in to out using the given key and nonce.
// In and out must overlap entirely or not at all. Nonce must
// be either 8 or 24 bytes long.
func XORKeyStream(out []byte, in []byte, nonce []byte, key *[32]byte)