hexdigest(*args)
public
Returns the hex-encoded hash value of a given string. This is
almost equivalent to
Digest.hexencode(Digest::Class.new(*parameters).digest(string)).
static VALUE
rb_digest_class_s_hexdigest(int argc, VALUE *argv, VALUE klass)
{
return hexencode_str_new(rb_funcallv(klass, id_digest, argc, argv));
}