Lines Matching defs:reason
83 REV_CRL_REASON = 1, /* Value is CRL reason code */
236 {"crl_reason", OPT_CRL_REASON, 's', "revocation reason"},
238 "the hold instruction, an OID. Sets revocation reason to certificateHold"},
240 "sets compromise time to val and the revocation reason to keyCompromise"},
242 "sets compromise time to val and the revocation reason to CACompromise"},
2333 /* CRL reason strings */
2352 * string is: revtime[,reason,extra]. Where 'revtime' is the revocation time
2353 * (the current time). 'reason' is the optional CRL reason and 'extra' is any
2360 const char *reason = NULL, *other = NULL;
2373 reason = crl_reasons[i];
2377 if (reason == NULL) {
2378 BIO_printf(bio_err, "Unknown CRL reason %s\n", rev_arg);
2393 reason = "holdInstruction";
2408 reason = "keyTime";
2410 reason = "CAkeyTime";
2422 if (reason)
2423 i += strlen(reason) + 1;
2427 str = app_malloc(i, "revocation reason");
2429 if (reason) {
2431 OPENSSL_strlcat(str, reason, i);
2595 BIO_printf(bio_err, "invalid reason code %s\n", reason_str);