method
update
v1_9_2_180 -
Show latest stable
- Class:
OpenSSL::Digest
update(p1)public
No documentation available.
VALUE
ossl_digest_update(VALUE self, VALUE data)
{
EVP_MD_CTX *ctx;
StringValue(data);
GetDigest(self, ctx);
EVP_DigestUpdate(ctx, RSTRING_PTR(data), RSTRING_LEN(data));
return self;
}