Home | History | Annotate | Download | only in x509v3

Lines Matching refs:conf

64 #include <openssl/conf.h>
111 void X509V3_conf_free(CONF_VALUE *conf)
113 if(!conf) return;
114 if(conf->name) OPENSSL_free(conf->name);
115 if(conf->value) OPENSSL_free(conf->value);
116 if(conf->section) OPENSSL_free(conf->section);
117 OPENSSL_free(conf);