package node type packetCipher interface { Encrypt(h xHeader, data, out []byte) []byte Decrypt(encrypted, out []byte) (data []byte, ok bool) }