method

set_default_paths

v1_9_1_378 - Show latest stable - Class: OpenSSL::X509::Store
set_default_paths()
public

No documentation available.

static VALUE
ossl_x509store_set_default_paths(VALUE self)
{
    X509_STORE *store;

    GetX509Store(self, store);
    if (X509_STORE_set_default_paths(store) != 1){
        ossl_raise(eX509StoreError, NULL);
    }

    return Qnil;
}