Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 575 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 575 Bytes

crc16-ccitt-node

Fungsi untuk mendapatkan nilai Error Check atau Checksum dengan algoritma CRC-ITU kadang juga disebut CRC16-CCITT

Instalasi

Instal dengan npm :

npm install crc16-ccitt-node --save

Contoh

let crc = require('crc16-ccitt-node');
let buffData = Buffer.from('ff7878', 'hex');

console.log("string hex : %s ", crc.getCrc16(buffData).toString(16));
// string hex : c1f4

console.log("decimal : %d ", crc.getCrc16(buffData));
// decimal : 49652