method

fips_mode

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: OpenSSL
fips_mode() public

No documentation

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

Hide source
static VALUE
ossl_fips_mode_get(VALUE self)
{

#ifdef OPENSSL_FIPS
    VALUE enabled;
    enabled = FIPS_mode() ? Qtrue : Qfalse;
    return enabled;
#else
    return Qfalse;
#endif
}
Register or log in to add new notes.