Symbol: BIO_new_file
lib/libcrypto/bio/bio.h
530
BIO *BIO_new_file(const char *filename, const char *mode);
lib/libcrypto/bio/bss_file.c
140
LCRYPTO_ALIAS(BIO_new_file);
lib/libcrypto/conf/conf_def.c
342
in = BIO_new_file(name, "rb");
lib/libcrypto/hidden/openssl/bio.h
68
LCRYPTO_USED(BIO_new_file);
lib/libcrypto/ts/ts_conf.c
100
if ((cert = BIO_new_file(file, "r")) == NULL)
lib/libcrypto/ts/ts_conf.c
120
if (!(certs = BIO_new_file(file, "r")))
lib/libcrypto/ts/ts_conf.c
153
if (!(key = BIO_new_file(file, "r")))
lib/libcrypto/x509/by_file.c
235
in = BIO_new_file(file, "r");
regress/lib/libcrypto/ct/cttest.c
167
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/bettertls/verify.c
52
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/callback.c
56
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/callbackfailures.c
63
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/expirecallback.c
55
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/policy/policy.c
69
if ((bio = BIO_new_file(filename, "r")) == NULL) {
regress/lib/libcrypto/x509/verify.c
56
if ((bio = BIO_new_file(filename, "r")) == NULL) {
sbin/iked/ocsp.c
441
if ((bio = BIO_new_file(file, "r")) == NULL) {
usr.bin/openssl/apps.c
389
pwdbio = BIO_new_file(arg + 5, "r");
usr.bin/openssl/apps.c
711
bio = BIO_new_file(file, "r");
usr.bin/openssl/asn1pars.c
292
if ((derout = BIO_new_file(cfg.derfile, "wb")) == NULL) {
usr.bin/openssl/ca.c
702
oid_bio = BIO_new_file(p, "r");
usr.bin/openssl/cms.c
1366
if ((in = BIO_new_file(cfg.infile, inmode)) == NULL) {
usr.bin/openssl/cms.c
1394
if ((indata = BIO_new_file(cfg.contfile,
usr.bin/openssl/cms.c
1420
if ((rctin = BIO_new_file(cfg.rctfile, rctmode)) == NULL) {
usr.bin/openssl/cms.c
1442
if ((out = BIO_new_file(cfg.outfile, outmode)) == NULL) {
usr.bin/openssl/cms.c
1814
tmp = BIO_new_file(signerfile, "w");
usr.bin/openssl/dgst.c
396
out = BIO_new_file(cfg.outfile, "wb");
usr.bin/openssl/dgst.c
398
out = BIO_new_file(cfg.outfile, "w");
usr.bin/openssl/dgst.c
523
sigbio = BIO_new_file(cfg.sigfile, "rb");
usr.bin/openssl/genpkey.c
251
if ((out = BIO_new_file(cfg.outfile, "wb")) ==
usr.bin/openssl/genpkey.c
327
pbio = BIO_new_file(file, "r");
usr.bin/openssl/ocsp.c
1007
derbio = BIO_new_file(cfg.respout, "wb");
usr.bin/openssl/ocsp.c
840
out = BIO_new_file(cfg.outfile, "w");
usr.bin/openssl/ocsp.c
852
derbio = BIO_new_file(cfg.reqin, "rb");
usr.bin/openssl/ocsp.c
951
derbio = BIO_new_file(cfg.reqout, "wb");
usr.bin/openssl/ocsp.c
987
derbio = BIO_new_file(cfg.respin, "rb");
usr.bin/openssl/pkcs12.c
571
in = BIO_new_file(cfg.infile, "rb");
usr.bin/openssl/pkcs12.c
582
out = BIO_new_file(cfg.outfile, "wb");
usr.bin/openssl/pkcs8.c
231
if (!(in = BIO_new_file(cfg.infile, "rb"))) {
usr.bin/openssl/pkcs8.c
241
if (!(out = BIO_new_file(cfg.outfile, "wb"))) {
usr.bin/openssl/pkey.c
235
if (!(out = BIO_new_file(cfg.outfile, "wb"))) {
usr.bin/openssl/pkeyparam.c
133
if (!(in = BIO_new_file(cfg.infile, "r"))) {
usr.bin/openssl/pkeyparam.c
142
if (!(out = BIO_new_file(cfg.outfile, "w"))) {
usr.bin/openssl/pkeyutl.c
300
if (!(in = BIO_new_file(cfg.infile, "rb"))) {
usr.bin/openssl/pkeyutl.c
310
if (!(out = BIO_new_file(cfg.outfile, "wb"))) {
usr.bin/openssl/pkeyutl.c
320
BIO *sigbio = BIO_new_file(cfg.sigfile, "rb");
usr.bin/openssl/req.c
1642
pbio = BIO_new_file(paramfile, "r");
usr.bin/openssl/req.c
640
oid_bio = BIO_new_file(p, "r");
usr.bin/openssl/rsautl.c
309
if (!(in = BIO_new_file(cfg.infile, "rb"))) {
usr.bin/openssl/rsautl.c
318
if (!(out = BIO_new_file(cfg.outfile, "wb"))) {
usr.bin/openssl/s_client.c
1045
BIO *stmp = BIO_new_file(cfg.sess_in, "r");
usr.bin/openssl/s_client.c
1347
BIO *stmp = BIO_new_file(
usr.bin/openssl/s_server.c
1885
if ((bio = BIO_new_file(dhfile, "r")) == NULL)
usr.bin/openssl/s_server.c
2117
if ((file = BIO_new_file(p, "r")) == NULL) {
usr.bin/openssl/smime.c
1089
tmp = BIO_new_file(signerfile, "w");
usr.bin/openssl/smime.c
875
if ((in = BIO_new_file(cfg.infile, inmode)) == NULL) {
usr.bin/openssl/smime.c
904
if ((indata = BIO_new_file(cfg.contfile,
usr.bin/openssl/smime.c
914
if ((out = BIO_new_file(cfg.outfile, outmode)) == NULL) {
usr.bin/openssl/ts.c
1000
if ((in = BIO_new_file(serialfile, "r")) == NULL) {
usr.bin/openssl/ts.c
1039
if ((out = BIO_new_file(serialfile, "w")) == NULL)
usr.bin/openssl/ts.c
1069
if ((in_bio = BIO_new_file(in, "rb")) == NULL)
usr.bin/openssl/ts.c
1125
if ((data_bio = BIO_new_file(data, "rb")) == NULL)
usr.bin/openssl/ts.c
1145
if ((input = BIO_new_file(queryfile, "rb")) == NULL)
usr.bin/openssl/ts.c
510
BIO *oid_bio = BIO_new_file(p, "r");
usr.bin/openssl/ts.c
542
if ((in_bio = BIO_new_file(in, "rb")) == NULL)
usr.bin/openssl/ts.c
589
BIO_new_file(file, mode);
usr.bin/openssl/ts.c
778
if ((in_bio = BIO_new_file(in, "rb")) == NULL)
usr.bin/openssl/ts.c
896
if ((query_bio = BIO_new_file(queryfile, "rb")) == NULL)
usr.sbin/nsd/server.c
2044
if ((bio = BIO_new_file(filename, "r")) == NULL) {
usr.sbin/ocspcheck/ocspcheck.c
256
if ((bio = BIO_new_file(file, "r")) == NULL) {
usr.sbin/unbound/testcode/doqclient.c
1340
f = BIO_new_file(data->session_file, "w");
usr.sbin/unbound/testcode/doqclient.c
2073
BIO* f = BIO_new_file(data->session_file, "r");