func (c *salsa20BlockCrypt) Encrypt(dst, src []byte) []byte { salsa20.XORKeyStream(dst[8:], src[8:], src[:8], &c.key) 最开始的 8 个字节不用加密了?