Random Byte Generator ===================== **Function**: .. function:: RandomBytes(bytes int) (data []byte) Given a length, return that many randomly generated bytes. Can be used for an IV or symmetric key. :param bytes: Number of random bytes to generate :type bytes: int :returns: Random bytes of length ``bytes`` :rtype: []byte