hexdigest!()
Returns the resulting hash value in a hex-encoded form and resets the digest to the initial state.
static VALUE rb_digest_instance_hexdigest_bang(VALUE self) { VALUE value = rb_funcall(self, id_finish, 0); rb_funcall(self, id_reset, 0); return hexencode_str_new(value); }