digest-crc 0.5.1 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +5 -0
- data/.travis.yml +8 -0
- data/ChangeLog.md +116 -1
- data/README.md +110 -0
- data/Rakefile +25 -1
- data/benchmarks.rb +8 -4
- data/ext/digest/Rakefile +51 -0
- data/ext/digest/compat/ruby.h +11 -0
- data/ext/digest/crc12_3gpp/crc12_3gpp.c +68 -0
- data/ext/digest/crc12_3gpp/crc12_3gpp.h +11 -0
- data/ext/digest/crc12_3gpp/crc12_3gpp_ext.c +27 -0
- data/ext/digest/crc12_3gpp/extconf.rb +7 -0
- data/ext/digest/crc15/crc15.c +54 -0
- data/ext/digest/crc15/crc15.h +11 -0
- data/ext/digest/crc15/crc15_ext.c +28 -0
- data/ext/digest/crc15/extconf.rb +7 -0
- data/ext/digest/crc16/crc16.c +70 -0
- data/ext/digest/crc16/crc16.h +11 -0
- data/ext/digest/crc16/crc16_ext.c +28 -0
- data/ext/digest/crc16/extconf.rb +7 -0
- data/ext/digest/crc16_ccitt/crc16_ccitt.c +70 -0
- data/ext/digest/crc16_ccitt/crc16_ccitt.h +8 -0
- data/ext/digest/crc16_ccitt/crc16_ccitt_ext.c +28 -0
- data/ext/digest/crc16_ccitt/extconf.rb +7 -0
- data/ext/digest/crc16_dnp/crc16_dnp.c +54 -0
- data/ext/digest/crc16_dnp/crc16_dnp.h +8 -0
- data/ext/digest/crc16_dnp/crc16_dnp_ext.c +28 -0
- data/ext/digest/crc16_dnp/extconf.rb +7 -0
- data/ext/digest/crc16_genibus/crc16_genibus.c +70 -0
- data/ext/digest/crc16_genibus/crc16_genibus.h +8 -0
- data/ext/digest/crc16_genibus/crc16_genibus_ext.c +28 -0
- data/ext/digest/crc16_genibus/extconf.rb +7 -0
- data/ext/digest/crc16_kermit/crc16_kermit.c +70 -0
- data/ext/digest/crc16_kermit/crc16_kermit.h +8 -0
- data/ext/digest/crc16_kermit/crc16_kermit_ext.c +28 -0
- data/ext/digest/crc16_kermit/extconf.rb +7 -0
- data/ext/digest/crc16_modbus/crc16_modbus.c +70 -0
- data/ext/digest/crc16_modbus/crc16_modbus.h +8 -0
- data/ext/digest/crc16_modbus/crc16_modbus_ext.c +28 -0
- data/ext/digest/crc16_modbus/extconf.rb +7 -0
- data/ext/digest/crc16_usb/crc16_usb.c +70 -0
- data/ext/digest/crc16_usb/crc16_usb.h +8 -0
- data/ext/digest/crc16_usb/crc16_usb_ext.c +28 -0
- data/ext/digest/crc16_usb/extconf.rb +7 -0
- data/ext/digest/crc16_x_25/crc16_x_25.c +70 -0
- data/ext/digest/crc16_x_25/crc16_x_25.h +8 -0
- data/ext/digest/crc16_x_25/crc16_x_25_ext.c +28 -0
- data/ext/digest/crc16_x_25/extconf.rb +7 -0
- data/ext/digest/crc16_xmodem/crc16_xmodem.c +70 -0
- data/ext/digest/crc16_xmodem/crc16_xmodem.h +8 -0
- data/ext/digest/crc16_xmodem/crc16_xmodem_ext.c +28 -0
- data/ext/digest/crc16_xmodem/extconf.rb +7 -0
- data/ext/digest/crc16_zmodem/crc16_zmodem.c +70 -0
- data/ext/digest/crc16_zmodem/crc16_zmodem.h +8 -0
- data/ext/digest/crc16_zmodem/crc16_zmodem_ext.c +28 -0
- data/ext/digest/crc16_zmodem/extconf.rb +7 -0
- data/ext/digest/crc24/crc24.c +70 -0
- data/ext/digest/crc24/crc24.h +11 -0
- data/ext/digest/crc24/crc24_ext.c +27 -0
- data/ext/digest/crc24/extconf.rb +7 -0
- data/ext/digest/crc32/crc32.c +69 -0
- data/ext/digest/crc32/crc32.h +11 -0
- data/ext/digest/crc32/crc32_ext.c +27 -0
- data/ext/digest/crc32/extconf.rb +7 -0
- data/ext/digest/crc32_bzip2/crc32_bzip2.c +70 -0
- data/ext/digest/crc32_bzip2/crc32_bzip2.h +8 -0
- data/ext/digest/crc32_bzip2/crc32_bzip2_ext.c +27 -0
- data/ext/digest/crc32_bzip2/extconf.rb +7 -0
- data/ext/digest/crc32_jam/crc32_jam.c +70 -0
- data/ext/digest/crc32_jam/crc32_jam.h +8 -0
- data/ext/digest/crc32_jam/crc32_jam_ext.c +27 -0
- data/ext/digest/crc32_jam/extconf.rb +7 -0
- data/ext/digest/crc32_mpeg/crc32_mpeg.c +70 -0
- data/ext/digest/crc32_mpeg/crc32_mpeg.h +8 -0
- data/ext/digest/crc32_mpeg/crc32_mpeg_ext.c +27 -0
- data/ext/digest/crc32_mpeg/extconf.rb +7 -0
- data/ext/digest/crc32_posix/crc32_posix.c +70 -0
- data/ext/digest/crc32_posix/crc32_posix.h +8 -0
- data/ext/digest/crc32_posix/crc32_posix_ext.c +27 -0
- data/ext/digest/crc32_posix/extconf.rb +7 -0
- data/ext/digest/crc32_xfer/crc32_xfer.c +70 -0
- data/ext/digest/crc32_xfer/crc32_xfer.h +8 -0
- data/ext/digest/crc32_xfer/crc32_xfer_ext.c +27 -0
- data/ext/digest/crc32_xfer/extconf.rb +7 -0
- data/ext/digest/crc32c/crc32c.c +70 -0
- data/ext/digest/crc32c/crc32c.h +8 -0
- data/ext/digest/crc32c/crc32c_ext.c +27 -0
- data/ext/digest/crc32c/extconf.rb +7 -0
- data/ext/digest/crc5/crc5.c +54 -0
- data/ext/digest/crc5/crc5.h +11 -0
- data/ext/digest/crc5/crc5_ext.c +27 -0
- data/ext/digest/crc5/extconf.rb +7 -0
- data/ext/digest/crc64/crc64.c +102 -0
- data/ext/digest/crc64/crc64.h +11 -0
- data/ext/digest/crc64/crc64_ext.c +27 -0
- data/ext/digest/crc64/extconf.rb +7 -0
- data/ext/digest/crc64_jones/crc64_jones.c +102 -0
- data/ext/digest/crc64_jones/crc64_jones.h +8 -0
- data/ext/digest/crc64_jones/crc64_jones_ext.c +27 -0
- data/ext/digest/crc64_jones/extconf.rb +7 -0
- data/ext/digest/crc64_xz/crc64_xz.c +102 -0
- data/ext/digest/crc64_xz/crc64_xz.h +8 -0
- data/ext/digest/crc64_xz/crc64_xz_ext.c +27 -0
- data/ext/digest/crc64_xz/extconf.rb +7 -0
- data/ext/digest/crc8/crc8.c +54 -0
- data/ext/digest/crc8/crc8.h +11 -0
- data/ext/digest/crc8/crc8_ext.c +27 -0
- data/ext/digest/crc8/extconf.rb +7 -0
- data/ext/digest/crc8_1wire/crc8_1wire.c +54 -0
- data/ext/digest/crc8_1wire/crc8_1wire.h +8 -0
- data/ext/digest/crc8_1wire/crc8_1wire_ext.c +27 -0
- data/ext/digest/crc8_1wire/extconf.rb +7 -0
- data/gemspec.yml +7 -1
- data/lib/digest/crc15.rb +4 -0
- data/lib/digest/crc16.rb +4 -0
- data/lib/digest/crc16_ccitt.rb +4 -0
- data/lib/digest/crc16_dnp.rb +4 -0
- data/lib/digest/crc16_genibus.rb +4 -0
- data/lib/digest/crc16_kermit.rb +4 -0
- data/lib/digest/crc16_modbus.rb +4 -0
- data/lib/digest/crc16_qt.rb +3 -60
- data/lib/digest/crc16_usb.rb +4 -0
- data/lib/digest/crc16_x_25.rb +4 -0
- data/lib/digest/crc16_xmodem.rb +4 -0
- data/lib/digest/crc16_zmodem.rb +4 -0
- data/lib/digest/crc24.rb +4 -0
- data/lib/digest/crc32.rb +5 -1
- data/lib/digest/crc32_bzip2.rb +4 -0
- data/lib/digest/crc32_mpeg.rb +4 -0
- data/lib/digest/crc32_posix.rb +4 -0
- data/lib/digest/crc32_xfer.rb +4 -0
- data/lib/digest/crc32c.rb +4 -0
- data/lib/digest/crc5.rb +4 -0
- data/lib/digest/crc64.rb +4 -0
- data/lib/digest/crc64_jones.rb +4 -0
- data/lib/digest/crc64_xz.rb +4 -0
- data/lib/digest/crc8.rb +4 -0
- data/lib/digest/crc8_1wire.rb +4 -0
- data/spec/crc16_qt_spec.rb +5 -5
- metadata +125 -4
@@ -0,0 +1,27 @@
|
|
1
|
+
#include "ruby.h"
|
2
|
+
#include "extconf.h"
|
3
|
+
|
4
|
+
#include "crc64_xz.h"
|
5
|
+
|
6
|
+
VALUE Digest_CRC64XZ_update(VALUE self, VALUE data)
|
7
|
+
{
|
8
|
+
VALUE crc_ivar_name = rb_intern("@crc");
|
9
|
+
VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
|
10
|
+
crc64_t crc = NUM2ULONG(crc_ivar);
|
11
|
+
|
12
|
+
const char *data_ptr = StringValuePtr(data);
|
13
|
+
size_t length = RSTRING_LEN(data);
|
14
|
+
|
15
|
+
crc = crc64_xz_update(crc,data_ptr,length);
|
16
|
+
|
17
|
+
rb_ivar_set(self, crc_ivar_name, ULONG2NUM(crc));
|
18
|
+
return self;
|
19
|
+
}
|
20
|
+
|
21
|
+
void Init_crc64_xz_ext()
|
22
|
+
{
|
23
|
+
VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
|
24
|
+
VALUE cCRC64XZ = rb_const_get(mDigest, rb_intern("CRC64XZ"));
|
25
|
+
|
26
|
+
rb_define_method(cCRC64XZ, "update", Digest_CRC64XZ_update, 1);
|
27
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/**
|
2
|
+
* \file
|
3
|
+
* Functions and types for CRC checks.
|
4
|
+
*
|
5
|
+
* Generated on Sat Feb 29 02:01:47 2020
|
6
|
+
* by pycrc v0.9.2, https://pycrc.org
|
7
|
+
* using the configuration:
|
8
|
+
* - Width = 8
|
9
|
+
* - Poly = 0x07
|
10
|
+
* - XorIn = 0x00
|
11
|
+
* - ReflectIn = False
|
12
|
+
* - XorOut = 0x00
|
13
|
+
* - ReflectOut = False
|
14
|
+
* - Algorithm = table-driven
|
15
|
+
*/
|
16
|
+
|
17
|
+
#include "crc8.h"
|
18
|
+
|
19
|
+
/**
|
20
|
+
* Static table used for the table_driven implementation.
|
21
|
+
*/
|
22
|
+
static const crc8_t crc8_1wire_table[256] = {
|
23
|
+
0x00, 0x07, 0x0e, 0x09, 0x1c, 0x1b, 0x12, 0x15, 0x38, 0x3f, 0x36, 0x31, 0x24, 0x23, 0x2a, 0x2d,
|
24
|
+
0x70, 0x77, 0x7e, 0x79, 0x6c, 0x6b, 0x62, 0x65, 0x48, 0x4f, 0x46, 0x41, 0x54, 0x53, 0x5a, 0x5d,
|
25
|
+
0xe0, 0xe7, 0xee, 0xe9, 0xfc, 0xfb, 0xf2, 0xf5, 0xd8, 0xdf, 0xd6, 0xd1, 0xc4, 0xc3, 0xca, 0xcd,
|
26
|
+
0x90, 0x97, 0x9e, 0x99, 0x8c, 0x8b, 0x82, 0x85, 0xa8, 0xaf, 0xa6, 0xa1, 0xb4, 0xb3, 0xba, 0xbd,
|
27
|
+
0xc7, 0xc0, 0xc9, 0xce, 0xdb, 0xdc, 0xd5, 0xd2, 0xff, 0xf8, 0xf1, 0xf6, 0xe3, 0xe4, 0xed, 0xea,
|
28
|
+
0xb7, 0xb0, 0xb9, 0xbe, 0xab, 0xac, 0xa5, 0xa2, 0x8f, 0x88, 0x81, 0x86, 0x93, 0x94, 0x9d, 0x9a,
|
29
|
+
0x27, 0x20, 0x29, 0x2e, 0x3b, 0x3c, 0x35, 0x32, 0x1f, 0x18, 0x11, 0x16, 0x03, 0x04, 0x0d, 0x0a,
|
30
|
+
0x57, 0x50, 0x59, 0x5e, 0x4b, 0x4c, 0x45, 0x42, 0x6f, 0x68, 0x61, 0x66, 0x73, 0x74, 0x7d, 0x7a,
|
31
|
+
0x89, 0x8e, 0x87, 0x80, 0x95, 0x92, 0x9b, 0x9c, 0xb1, 0xb6, 0xbf, 0xb8, 0xad, 0xaa, 0xa3, 0xa4,
|
32
|
+
0xf9, 0xfe, 0xf7, 0xf0, 0xe5, 0xe2, 0xeb, 0xec, 0xc1, 0xc6, 0xcf, 0xc8, 0xdd, 0xda, 0xd3, 0xd4,
|
33
|
+
0x69, 0x6e, 0x67, 0x60, 0x75, 0x72, 0x7b, 0x7c, 0x51, 0x56, 0x5f, 0x58, 0x4d, 0x4a, 0x43, 0x44,
|
34
|
+
0x19, 0x1e, 0x17, 0x10, 0x05, 0x02, 0x0b, 0x0c, 0x21, 0x26, 0x2f, 0x28, 0x3d, 0x3a, 0x33, 0x34,
|
35
|
+
0x4e, 0x49, 0x40, 0x47, 0x52, 0x55, 0x5c, 0x5b, 0x76, 0x71, 0x78, 0x7f, 0x6a, 0x6d, 0x64, 0x63,
|
36
|
+
0x3e, 0x39, 0x30, 0x37, 0x22, 0x25, 0x2c, 0x2b, 0x06, 0x01, 0x08, 0x0f, 0x1a, 0x1d, 0x14, 0x13,
|
37
|
+
0xae, 0xa9, 0xa0, 0xa7, 0xb2, 0xb5, 0xbc, 0xbb, 0x96, 0x91, 0x98, 0x9f, 0x8a, 0x8d, 0x84, 0x83,
|
38
|
+
0xde, 0xd9, 0xd0, 0xd7, 0xc2, 0xc5, 0xcc, 0xcb, 0xe6, 0xe1, 0xe8, 0xef, 0xfa, 0xfd, 0xf4, 0xf3
|
39
|
+
};
|
40
|
+
|
41
|
+
crc8_t crc8_update(crc8_t crc, const void *data, size_t data_len)
|
42
|
+
{
|
43
|
+
const unsigned char *d = (const unsigned char *)data;
|
44
|
+
unsigned int tbl_idx;
|
45
|
+
|
46
|
+
while (data_len--)
|
47
|
+
{
|
48
|
+
tbl_idx = crc ^ *d;
|
49
|
+
crc = crc8_1wire_table[tbl_idx] & 0xff;
|
50
|
+
d++;
|
51
|
+
}
|
52
|
+
|
53
|
+
return crc & 0xff;
|
54
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#include "ruby.h"
|
2
|
+
#include "extconf.h"
|
3
|
+
|
4
|
+
#include "crc8.h"
|
5
|
+
|
6
|
+
VALUE Digest_CRC8_update(VALUE self, VALUE data)
|
7
|
+
{
|
8
|
+
VALUE crc_ivar_name = rb_intern("@crc");
|
9
|
+
VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
|
10
|
+
crc8_t crc = NUM2CHR(crc_ivar);
|
11
|
+
|
12
|
+
const char *data_ptr = StringValuePtr(data);
|
13
|
+
size_t length = RSTRING_LEN(data);
|
14
|
+
|
15
|
+
crc = crc8_update(crc,data_ptr,length);
|
16
|
+
|
17
|
+
rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc));
|
18
|
+
return self;
|
19
|
+
}
|
20
|
+
|
21
|
+
void Init_crc8_ext()
|
22
|
+
{
|
23
|
+
VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
|
24
|
+
VALUE cCRC8 = rb_const_get(mDigest, rb_intern("CRC8"));
|
25
|
+
|
26
|
+
rb_define_method(cCRC8, "update", Digest_CRC8_update, 1);
|
27
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/**
|
2
|
+
* \file
|
3
|
+
* Functions and types for CRC checks.
|
4
|
+
*
|
5
|
+
* Generated on Sat Feb 29 02:02:50 2020
|
6
|
+
* by pycrc v0.9.2, https://pycrc.org
|
7
|
+
* using the configuration:
|
8
|
+
* - Width = 8
|
9
|
+
* - Poly = 0x31
|
10
|
+
* - XorIn = 0x00
|
11
|
+
* - ReflectIn = True
|
12
|
+
* - XorOut = 0x00
|
13
|
+
* - ReflectOut = True
|
14
|
+
* - Algorithm = table-driven
|
15
|
+
*/
|
16
|
+
|
17
|
+
#include "crc8_1wire.h"
|
18
|
+
|
19
|
+
/**
|
20
|
+
* Static table used for the table_driven implementation.
|
21
|
+
*/
|
22
|
+
static const crc8_t crc8_table[256] = {
|
23
|
+
0x00, 0x5e, 0xbc, 0xe2, 0x61, 0x3f, 0xdd, 0x83, 0xc2, 0x9c, 0x7e, 0x20, 0xa3, 0xfd, 0x1f, 0x41,
|
24
|
+
0x9d, 0xc3, 0x21, 0x7f, 0xfc, 0xa2, 0x40, 0x1e, 0x5f, 0x01, 0xe3, 0xbd, 0x3e, 0x60, 0x82, 0xdc,
|
25
|
+
0x23, 0x7d, 0x9f, 0xc1, 0x42, 0x1c, 0xfe, 0xa0, 0xe1, 0xbf, 0x5d, 0x03, 0x80, 0xde, 0x3c, 0x62,
|
26
|
+
0xbe, 0xe0, 0x02, 0x5c, 0xdf, 0x81, 0x63, 0x3d, 0x7c, 0x22, 0xc0, 0x9e, 0x1d, 0x43, 0xa1, 0xff,
|
27
|
+
0x46, 0x18, 0xfa, 0xa4, 0x27, 0x79, 0x9b, 0xc5, 0x84, 0xda, 0x38, 0x66, 0xe5, 0xbb, 0x59, 0x07,
|
28
|
+
0xdb, 0x85, 0x67, 0x39, 0xba, 0xe4, 0x06, 0x58, 0x19, 0x47, 0xa5, 0xfb, 0x78, 0x26, 0xc4, 0x9a,
|
29
|
+
0x65, 0x3b, 0xd9, 0x87, 0x04, 0x5a, 0xb8, 0xe6, 0xa7, 0xf9, 0x1b, 0x45, 0xc6, 0x98, 0x7a, 0x24,
|
30
|
+
0xf8, 0xa6, 0x44, 0x1a, 0x99, 0xc7, 0x25, 0x7b, 0x3a, 0x64, 0x86, 0xd8, 0x5b, 0x05, 0xe7, 0xb9,
|
31
|
+
0x8c, 0xd2, 0x30, 0x6e, 0xed, 0xb3, 0x51, 0x0f, 0x4e, 0x10, 0xf2, 0xac, 0x2f, 0x71, 0x93, 0xcd,
|
32
|
+
0x11, 0x4f, 0xad, 0xf3, 0x70, 0x2e, 0xcc, 0x92, 0xd3, 0x8d, 0x6f, 0x31, 0xb2, 0xec, 0x0e, 0x50,
|
33
|
+
0xaf, 0xf1, 0x13, 0x4d, 0xce, 0x90, 0x72, 0x2c, 0x6d, 0x33, 0xd1, 0x8f, 0x0c, 0x52, 0xb0, 0xee,
|
34
|
+
0x32, 0x6c, 0x8e, 0xd0, 0x53, 0x0d, 0xef, 0xb1, 0xf0, 0xae, 0x4c, 0x12, 0x91, 0xcf, 0x2d, 0x73,
|
35
|
+
0xca, 0x94, 0x76, 0x28, 0xab, 0xf5, 0x17, 0x49, 0x08, 0x56, 0xb4, 0xea, 0x69, 0x37, 0xd5, 0x8b,
|
36
|
+
0x57, 0x09, 0xeb, 0xb5, 0x36, 0x68, 0x8a, 0xd4, 0x95, 0xcb, 0x29, 0x77, 0xf4, 0xaa, 0x48, 0x16,
|
37
|
+
0xe9, 0xb7, 0x55, 0x0b, 0x88, 0xd6, 0x34, 0x6a, 0x2b, 0x75, 0x97, 0xc9, 0x4a, 0x14, 0xf6, 0xa8,
|
38
|
+
0x74, 0x2a, 0xc8, 0x96, 0x15, 0x4b, 0xa9, 0xf7, 0xb6, 0xe8, 0x0a, 0x54, 0xd7, 0x89, 0x6b, 0x35
|
39
|
+
};
|
40
|
+
|
41
|
+
crc8_t crc8_1wire_update(crc8_t crc, const void *data, size_t data_len)
|
42
|
+
{
|
43
|
+
const unsigned char *d = (const unsigned char *)data;
|
44
|
+
unsigned int tbl_idx;
|
45
|
+
|
46
|
+
while (data_len--)
|
47
|
+
{
|
48
|
+
tbl_idx = crc ^ *d;
|
49
|
+
crc = (crc8_table[tbl_idx] ^ (crc >> 8)) & 0xff;
|
50
|
+
d++;
|
51
|
+
}
|
52
|
+
|
53
|
+
return crc & 0xff;
|
54
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#include "ruby.h"
|
2
|
+
#include "extconf.h"
|
3
|
+
|
4
|
+
#include "crc8_1wire.h"
|
5
|
+
|
6
|
+
VALUE Digest_CRC81Wire_update(VALUE self, VALUE data)
|
7
|
+
{
|
8
|
+
VALUE crc_ivar_name = rb_intern("@crc");
|
9
|
+
VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
|
10
|
+
crc8_t crc = NUM2CHR(crc_ivar);
|
11
|
+
|
12
|
+
const char *data_ptr = StringValuePtr(data);
|
13
|
+
size_t length = RSTRING_LEN(data);
|
14
|
+
|
15
|
+
crc = crc8_1wire_update(crc,data_ptr,length);
|
16
|
+
|
17
|
+
rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc));
|
18
|
+
return self;
|
19
|
+
}
|
20
|
+
|
21
|
+
void Init_crc8_1wire_ext()
|
22
|
+
{
|
23
|
+
VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
|
24
|
+
VALUE cCRC81Wire = rb_const_get(mDigest, rb_intern("CRC8_1Wire"));
|
25
|
+
|
26
|
+
rb_define_method(cCRC81Wire, "update", Digest_CRC81Wire_update, 1);
|
27
|
+
}
|
data/gemspec.yml
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
name: digest-crc
|
2
|
-
version: 0.
|
2
|
+
version: 0.6.1
|
3
3
|
summary: A Cyclic Redundancy Check (CRC) library for Ruby.
|
4
4
|
description:
|
5
5
|
Adds support for calculating Cyclic Redundancy Check (CRC) to the Digest
|
@@ -16,7 +16,13 @@ metadata:
|
|
16
16
|
bug_tracker_uri: https://github.com/postmodern/digest-crc/issues
|
17
17
|
changelog_uri: https://github.com/postmodern/digest-crc/blob/master/ChangeLog.md
|
18
18
|
|
19
|
+
extensions:
|
20
|
+
- ext/digest/Rakefile
|
21
|
+
|
19
22
|
has_yard: true
|
20
23
|
|
21
24
|
development_dependencies:
|
22
25
|
bundler: ~> 2.0
|
26
|
+
|
27
|
+
dependencies:
|
28
|
+
rake: ~> 13.0
|
data/lib/digest/crc15.rb
CHANGED
data/lib/digest/crc16.rb
CHANGED
data/lib/digest/crc16_ccitt.rb
CHANGED
data/lib/digest/crc16_dnp.rb
CHANGED
data/lib/digest/crc16_genibus.rb
CHANGED
data/lib/digest/crc16_kermit.rb
CHANGED
data/lib/digest/crc16_modbus.rb
CHANGED
data/lib/digest/crc16_qt.rb
CHANGED
@@ -1,67 +1,10 @@
|
|
1
|
-
require 'digest/
|
1
|
+
require 'digest/crc16_x_25'
|
2
2
|
|
3
3
|
module Digest
|
4
4
|
#
|
5
5
|
# Implements the CRC16_CCITT algorithm used in QT algorithms.
|
6
6
|
#
|
7
|
-
# @
|
7
|
+
# @note Is exactly the same as the CRC16 X-25 algorithm.
|
8
8
|
#
|
9
|
-
|
10
|
-
|
11
|
-
FINAL_XOR = 0xffff
|
12
|
-
|
13
|
-
#
|
14
|
-
# Updates the CRC16 checksum.
|
15
|
-
#
|
16
|
-
# @param [String] data
|
17
|
-
# The data to update the checksum with.
|
18
|
-
#
|
19
|
-
def update(data)
|
20
|
-
data.each_byte do |b|
|
21
|
-
b = revert_byte(b)
|
22
|
-
@crc = ((@table[((@crc >> 8) ^ b) & 0xff] ^ (@crc << 8)) & 0xffff)
|
23
|
-
end
|
24
|
-
|
25
|
-
return self
|
26
|
-
end
|
27
|
-
|
28
|
-
#
|
29
|
-
# Calculates the CRC checksum value.
|
30
|
-
#
|
31
|
-
# @return [Integer]
|
32
|
-
#
|
33
|
-
def checksum
|
34
|
-
crc = super
|
35
|
-
crc ^= FINAL_XOR
|
36
|
-
crc = revert_bits(crc)
|
37
|
-
return crc
|
38
|
-
end
|
39
|
-
|
40
|
-
protected
|
41
|
-
|
42
|
-
def revert_bits(cc)
|
43
|
-
ob = 0
|
44
|
-
b = (1 << 15)
|
45
|
-
|
46
|
-
16.times do |t|
|
47
|
-
ob |= (1 << t) if (cc & b) != 0
|
48
|
-
b >>= 1
|
49
|
-
end
|
50
|
-
|
51
|
-
return ob
|
52
|
-
end
|
53
|
-
|
54
|
-
def revert_byte(cc)
|
55
|
-
ob = 0
|
56
|
-
b = (1 << 7)
|
57
|
-
|
58
|
-
8.times do |t|
|
59
|
-
ob |= (1 << t) if (cc & b) != 0
|
60
|
-
b >>= 1
|
61
|
-
end
|
62
|
-
|
63
|
-
return ob
|
64
|
-
end
|
65
|
-
|
66
|
-
end
|
9
|
+
CRC16QT = CRC16X25
|
67
10
|
end
|
data/lib/digest/crc16_usb.rb
CHANGED
data/lib/digest/crc16_x_25.rb
CHANGED
data/lib/digest/crc16_xmodem.rb
CHANGED
data/lib/digest/crc16_zmodem.rb
CHANGED