Sha256: 9626bf4dfdf14a28e6e60198bafe0eb201739d0e44e1389d57c93357272aff5f

Contents?: true

Size: 732 Bytes

Versions: 1

Compression:

Stored size: 732 Bytes

Contents

#include "ruby.h"
#include "extconf.h"

#include "crc64_jones.h"

VALUE Digest_CRC64Jones_update(VALUE self, VALUE data)
{
	VALUE crc_ivar_name = rb_intern("@crc");
	VALUE crc_ivar = rb_ivar_get(self, crc_ivar_name);
	crc64_t crc = NUM2ULONG(crc_ivar);

	const char *data_ptr = StringValuePtr(data);
	size_t length = RSTRING_LEN(data);

	crc = crc64_jones_update(crc,data_ptr,length);

	rb_ivar_set(self, crc_ivar_name, ULONG2NUM(crc));
	return self;
}

void Init_crc64_jones_ext()
{
	VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
	VALUE cCRC64Jones = rb_const_get(mDigest, rb_intern("CRC64Jones"));

	rb_undef_method(cCRC64Jones, "update");
	rb_define_method(cCRC64Jones, "update", Digest_CRC64Jones_update, 1);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
digest-crc-0.6.4 ext/digest/crc64_jones/crc64_jones_ext.c