Flowdock
update(p1) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
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;
}
Register or log in to add new notes.