iTextSharp.text.pdf.codec.PngWriter.crc C# (CSharp) Method

crc() private static method

private static crc ( byte buf ) : uint
buf byte
return uint
        private static uint crc(byte[] buf)
        {
            return update_crc(0xffffffffU, buf, 0, buf.Length) ^ 0xffffffffU;
        }

Same methods

PngWriter::crc ( byte buf, int offset, int len ) : uint