xtea.BlockSize
// The XTEA block size in bytes.
const BlockSize = 8
xtea.NewCipher
// NewCipher creates and returns a new Cipher.
// The key argument should be the XTEA key.
// XTEA only supports 128 bit (16 byte) keys.
func NewCipher(key []byte) (*Cipher, error)