Home
last modified time | relevance | path

Searched refs:public_exponent (Results 1 – 11 of 11) sorted by relevance

/OK3568_Linux_fs/u-boot/test/py/tests/
H A Dtest_vboot.py174 public_exponent = 65537
178 '2>/dev/null' % (tmpdir, public_exponent))
/OK3568_Linux_fs/buildroot/package/vboot-utils/
H A D0006-Update-for-openssl-1.1.patch219 - int public_exponent = BN_get_word(key->e);
222 + int public_exponent, modulus;
225 + public_exponent = BN_get_word(e);
228 if (public_exponent != 65537) {
/OK3568_Linux_fs/u-boot/include/u-boot/
H A Drsa-mod-exp.h25 const void *public_exponent; /* public exponent as byte array */ member
/OK3568_Linux_fs/u-boot/lib/rsa/
H A Drsa-mod-exp.c268 if (!prop->public_exponent) { in rsa_mod_exp_sw()
278 memcpy((void *)&tmp, prop->public_exponent, sizeof(uint64_t)); in rsa_mod_exp_sw()
H A Drsa-verify.c468 prop->public_exponent = fdt_getprop(blob, node, "rsa,exponent", &length); in rsa_get_key_prop()
469 if (!prop->public_exponent || length < sizeof(uint64_t)) in rsa_get_key_prop()
470 prop->public_exponent = NULL; in rsa_get_key_prop()
/OK3568_Linux_fs/u-boot/drivers/crypto/fsl/
H A Dfsl_rsa.c34 pkin.e = prop->public_exponent; in fsl_mod_exp()
/OK3568_Linux_fs/external/security/rk_tee_user/v1/ta/rk_public_api/
H A Drk_crypto_api.h127 uint64_t public_exponent);
H A Drk_crypto_api.c33 uint64_t public_exponent) in rk_gen_rsa_key() argument
51 if (public_exponent != 3 && public_exponent != 65537) in rk_gen_rsa_key()
54 e_len = long2byte(public_exponent, e); in rk_gen_rsa_key()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/rk_public_api/
H A Drk_crypto_api.h144 uint64_t public_exponent);
H A Drk_crypto_api.c33 uint64_t public_exponent) in rk_gen_rsa_key() argument
51 if (public_exponent != 3 && public_exponent != 65537) in rk_gen_rsa_key()
54 e_len = long2byte(public_exponent, e); in rk_gen_rsa_key()
/OK3568_Linux_fs/u-boot/board/freescale/common/
H A Dfsl_validate.c802 prop.public_exponent = img->img_key + key_len; in calculate_cmp_img_sig()