Exemplo n.º 1
0
        /// <summary>Calculates double-word length (32-bit) XOR-based check-sum on specified portion of a buffer.</summary>
        /// <param name="data">Data buffer to perform XOR check-sum on.</param>
        /// <param name="startIndex">Starts index in data buffer to begin XOR check-sum.</param>
        /// <param name="length">Total number of bytes from <paramref name="startIndex">startIndex</paramref> to
        /// perform XOR check-sum over.</param>
        /// <returns>Double-word length XOR check-sum.</returns>
        public static uint Xor32Checksum(this byte[] data, int startIndex, int length)
        {
            Xor32 checksum = new Xor32();

            checksum.Update(data, startIndex, length);

            return(checksum.Value);
        }
Exemplo n.º 2
0
        /// <summary>Calculates double-word length (32-bit) XOR-based check-sum on specified portion of a buffer.</summary>
        /// <param name="data">Data buffer to perform XOR check-sum on.</param>
        /// <param name="startIndex">Starts index in data buffer to begin XOR check-sum.</param>
        /// <param name="length">Total number of bytes from <paramref name="startIndex">startIndex</paramref> to
        /// perform XOR check-sum over.</param>
        /// <returns>Double-word length XOR check-sum.</returns>
        public static uint Xor32Checksum(this byte[] data, int startIndex, int length)
        {
            Xor32 checksum = new Xor32();

            checksum.Update(data, startIndex, length);

            return checksum.Value;
        }