Lines Matching refs:serial
49 {"issuer", OPT_CRITERION_ISSUER, 's', "Search by issuer and serial, issuer name"},
50 {"serial", OPT_CRITERION_SERIAL, 's', "Search by issuer and serial, serial number"},
82 ASN1_INTEGER *serial = NULL;
189 if (serial != NULL) {
190 BIO_printf(bio_err, "%s: serial number already given.\n",
194 if ((serial = s2i_ASN1_INTEGER(NULL, opt_arg())) == NULL) {
195 BIO_printf(bio_err, "%s: can't parse serial number argument.\n",
278 if (issuer == NULL || serial == NULL) {
280 "%s: both -issuer and -serial must be given.\n",
284 if ((search = OSSL_STORE_SEARCH_by_issuer_serial(issuer, serial))
327 ASN1_INTEGER_free(serial);