crc-full icon indicating copy to clipboard operation
crc-full copied to clipboard

The crc-full module is used to calculate any kind of CRC setting parameters such as length, polynomial and others. It's completely written in typescript for node js.

Results 1 crc-full issues
Sort by recently updated
recently updated
newest added

For example: ``` // for (0-100 hex) let data = '0102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F6061626364'; let buf = Buffer.from(data, 'hex'); let crc = CRC.default("CRC32_C"); let computed_crc = crc.compute(source); // output is: -5DA0519C ``` But...