1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/info.R
\name{openssl_config}
\alias{openssl_config}
\alias{fips_mode}
\title{OpenSSL Configuration Info}
\usage{
openssl_config()
fips_mode()
}
\description{
Shows libssl version and configuration information.
}
\details{
Note that the "fips" flag in \code{openssl_config} means that FIPS is
supported, but it does not mean that it is currently enforced. If
supported, it can be enabled in several ways, such as a kernel
option, or setting an environment variable \code{OPENSSL_FORCE_FIPS_MODE=1}.
The \code{fips_mode()} function shows if FIPS is currently enforced.
}
|