Lines Matching defs:out
65 {"out", OPT_OUT, '>', "Output config file, used when generating"},
78 unsigned char *out, size_t *out_len)
93 if (!EVP_MAC_final(ctx, out, out_len, outsz))
130 static int write_config_header(BIO *out, const char *prov_name,
133 return BIO_printf(out, "openssl_conf = openssl_init\n\n")
134 && BIO_printf(out, "[openssl_init]\n")
135 && BIO_printf(out, "providers = provider_section\n\n")
136 && BIO_printf(out, "[provider_section]\n")
137 && BIO_printf(out, "%s = %s\n\n", prov_name, section);
147 static int write_config_fips_section(BIO *out, const char *section,
157 if (BIO_printf(out, "[%s]\n", section) <= 0
158 || BIO_printf(out, "activate = 1\n") <= 0
159 || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_VERSION,
161 || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_CONDITIONAL_ERRORS,
163 || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_SECURITY_CHECKS,
165 || !print_mac(out, OSSL_PROV_FIPS_PARAM_MODULE_MAC, module_mac,
170 if (!print_mac(out, OSSL_PROV_FIPS_PARAM_INSTALL_MAC, install_mac,
172 || BIO_printf(out, "%s = %s\n", OSSL_PROV_FIPS_PARAM_INSTALL_STATUS,