Home | History | Annotate | Download | only in x509v3

Lines Matching refs:conf

67 #include <openssl/conf.h>
73 #include "../conf/internal.h"
119 void X509V3_conf_free(CONF_VALUE *conf)
121 if(!conf) return;
122 if(conf->name) OPENSSL_free(conf->name);
123 if(conf->value) OPENSSL_free(conf->value);
124 if(conf->section) OPENSSL_free(conf->section);
125 OPENSSL_free(conf);