Method: Digest.hexencode
- Defined in:
- digest.c
.hexencode(string) ⇒ Object
Generates a hex-encoded version of a given string.
138 139 140 141 142 |
# File 'digest.c', line 138
static VALUE
rb_digest_s_hexencode(VALUE klass, VALUE str)
{
return hexencode_str_new(str);
}
|