Lines Matching defs:name
39 GENERAL_NAME *name);
289 * - Check if the TSA name matches the signer.
290 * - Check if the TSA name is the expected TSA.
427 char name[OSSL_MAX_NAME_SIZE];
436 OBJ_obj2txt(name, sizeof(name), md_alg_resp->algorithm, 0);
439 md = EVP_MD_fetch(NULL, name, NULL);
442 md = (EVP_MD *)EVP_get_digestbyname(name);
535 * Check if the specified TSA name matches either the subject or one of the
553 * Get the next subject alternative name, although there should be no
564 /* Returns 1 if name is in gen_names, 0 otherwise. */
565 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names, GENERAL_NAME *name)
570 found = GENERAL_NAME_cmp(current, name) == 0;