Lines Matching defs:value
97 if ((*language = OBJ_txt2obj(val->value, 0)) == NULL) {
127 if (strncmp(val->value, "hex:", 4) == 0) {
129 OPENSSL_hexstr2buf(val->value + 4, &val_len);
158 } else if (strncmp(val->value, "file:", 5) == 0) {
161 BIO *b = BIO_new_file(val->value + 5, "r");
197 } else if (strncmp(val->value, "text:", 5) == 0) {
198 val_len = strlen(val->value + 5);
204 val->value + 5, val_len);
240 X509V3_CTX *ctx, char *value)
249 vals = X509V3_parse_list(value);
253 if (!cnf->name || (*cnf->name != '@' && !cnf->value)) {