Flowdock
method

blinding_on!

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: RSA
blinding_on!() public

No documentation

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

Hide source
static VALUE
ossl_rsa_blinding_on(VALUE self)
{
    RSA *rsa;

    GetRSA(self, rsa);

    if (RSA_blinding_on(rsa, ossl_bn_ctx) != 1) {
        ossl_raise(eRSAError, NULL);
    }
    return self;
}
Register or log in to add new notes.