# crc8js **Repository Path**: tgzhome/crc8js ## Basic Information - **Project Name**: crc8js - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-12-04 - **Last Updated**: 2023-03-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README crc8js ====== CRC-8 checksum generation in javascript usage ====== ```javascript var sample_text = "Hi. I need a checksum." // convert sample text to array of bytes var byte_array = sample_text.split('').map(function(x){return x.charCodeAt(0)}) var crc8 = new CRC8() var checksum = crc8.checksum(byte_array) ```