Home
last modified time | relevance | path

Searched refs:pkey_algo (Results 1 – 7 of 7) sorted by relevance

/external/u-boot/lib/crypto/
Dx509_public_key.c43 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()
Dpublic_key.c43 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()
Dx509_cert_parser.c247 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()
Dpkcs7_parser.c275 ctx->sinfo->sig->pkey_algo = "rsa"; in pkcs7_sig_note_pkey_algo()
/external/u-boot/include/crypto/
Dpublic_key.h34 const char *pkey_algo; member
48 const char *pkey_algo; member
/external/kmod/libkmod/
Dlibkmod-signature.c38 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/
Dasn1.c130 ut_assertf(!strcmp(cert->pub->pkey_algo, "rsa"), "algo isn't rsa\n"); in lib_asn1_x509()