public string GetOutput(byte[] bytes)
        {
            if (bytes == null)
            {
                return(null);
            }

            var bytesReversed = ByteArrayUtils.ReverseBytes3210(bytes);

            return(ByteArrayUtils.ByteArrayAsInt32(bytesReversed));
        }
        public string GetOutput(byte[] bytes)
        {
            if (bytes == null)
            {
                return(null);
            }

            var bytesNormalized = ByteArrayUtils.NormalizeTo4Bytes(bytes);

            return(ByteArrayUtils.ByteArrayAsInt32(bytesNormalized));
        }