Sha256: 82d85b823f3ca9b15fcc6688e107d129d52e1b5e6d76c7de13438ff270bb0bdf
Contents?: true
Size: 671 Bytes
Versions: 1
Compression:
Stored size: 671 Bytes
Contents
#include "ruby.h" #include "extconf.h" #include "crc5.h" VALUE Digest_CRC5_update(VALUE self, VALUE data) { VALUE crc_ivar_name = rb_intern("@crc"); VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name); crc5_t crc = NUM2CHR(crc_ivar); const char *data_ptr = StringValuePtr(data); size_t length = RSTRING_LEN(data); crc = crc5_update(crc,data_ptr,length); rb_ivar_set(self, crc_ivar_name, UINT2NUM(crc)); return self; } void Init_crc5_ext() { VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest")); VALUE cCRC5 = rb_const_get(mDigest, rb_intern("CRC5")); rb_undef_method(cCRC5, "update"); rb_define_method(cCRC5, "update", Digest_CRC5_update, 1); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
digest-crc-0.6.4 | ext/digest/crc5/crc5_ext.c |