method

reset

v1_9_2_180 - Show latest stable - Class: OpenSSL::HMAC
reset()
public

No documentation available.

static VALUE
ossl_hmac_reset(VALUE self)
{
    HMAC_CTX *ctx;

    GetHMAC(self, ctx);
    HMAC_Init_ex(ctx, NULL, 0, NULL, NULL);

    return self;
}