Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
CRC « Security « C# / C Sharp
C# / C Sharp
Security
CRC
1.
This class is responsible for calculating the crc32 value of a byte buffer and returning it as a hexadecimal string.
2.
A utility class to compute CRC32
3.
Generate a table for a byte-wise 32-bit CRC calculation on the polynomial: x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1.
4.
Calculates a 32 bit Cyclic Redundancy Checksum (CRC) using the same polynomial used by Zip.
5.
Do CRC32 hashing.