Searched refs:pkey_algo (Results 1 – 7 of 7) sorted by relevance
/external/u-boot/lib/crypto/ |
D | x509_public_key.c | 43 if (!cert->pub->pkey_algo) in x509_get_sig_params() 46 if (!sig->pkey_algo) in x509_get_sig_params() 150 if (strcmp(cert->pub->pkey_algo, cert->sig->pkey_algo) != 0) in x509_check_for_self_signed() 198 pr_devel("Cert Key Algo: %s\n", cert->pub->pkey_algo); in x509_key_preparse() 208 cert->sig->pkey_algo, cert->sig->hash_algo); in x509_key_preparse()
|
D | public_key.c | 43 seq_printf(m, "%s.%s", key->id_type, key->pkey_algo); in public_key_describe() 109 pkey->pkey_algo); in software_key_determine_akcipher() 113 pkey->pkey_algo, hash_algo); in software_key_determine_akcipher() 118 strcpy(alg_name, pkey->pkey_algo); in software_key_determine_akcipher()
|
D | x509_cert_parser.c | 247 ctx->cert->sig->pkey_algo = "rsa"; in x509_note_pkey_algo() 252 ctx->cert->sig->pkey_algo = "ecrdsa"; in x509_note_pkey_algo() 275 if (strcmp(ctx->cert->sig->pkey_algo, "rsa") == 0 || in x509_note_signature() 276 strcmp(ctx->cert->sig->pkey_algo, "ecrdsa") == 0) { in x509_note_signature() 462 ctx->cert->pub->pkey_algo = "rsa"; in x509_extract_key_data() 465 ctx->cert->pub->pkey_algo = "ecrdsa"; in x509_extract_key_data()
|
D | pkcs7_parser.c | 275 ctx->sinfo->sig->pkey_algo = "rsa"; in pkcs7_sig_note_pkey_algo()
|
/external/u-boot/include/crypto/ |
D | public_key.h | 34 const char *pkey_algo; member 48 const char *pkey_algo; member
|
/external/kmod/libkmod/ |
D | libkmod-signature.c | 38 enum pkey_algo { enum 44 static const char *const pkey_algo[PKEY_ALGO__LAST] = { variable 114 sig_info->algo = pkey_algo[modsig->algo]; in fill_default()
|
/external/u-boot/test/lib/ |
D | asn1.c | 130 ut_assertf(!strcmp(cert->pub->pkey_algo, "rsa"), "algo isn't rsa\n"); in lib_asn1_x509()
|