Sha256: a0b6ae2ad202e5a288025d146dfc854ff7e2f9d68045ef653c8b284da6a0d07b

Contents?: true

Size: 753 Bytes

Versions: 1

Compression:

Stored size: 753 Bytes

Contents

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

#include "crc64.h"

VALUE Digest_CRC64_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_update(crc,data_ptr,length);

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

void Init_crc64_ext()
{
	VALUE mDigest = rb_const_get(rb_cObject, rb_intern("Digest"));
	VALUE cCRC64 = rb_const_get(mDigest, rb_intern("CRC64"));

	#ifdef HAVE_RB_EXT_RACTOR_SAFE
		rb_ext_ractor_safe(true);
	#endif

	rb_undef_method(cCRC64, "update");
	rb_define_method(cCRC64, "update", Digest_CRC64_update, 1);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
digest-crc-0.6.5 ext/digest/crc64/crc64_ext.c