Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/test/py/tests/
H A Dtest_vboot.py174 public_exponent = 65537
178 '2>/dev/null' % (tmpdir, public_exponent))
/rk3399_rockchip-uboot/include/u-boot/
H A Drsa-mod-exp.h25 const void *public_exponent; /* public exponent as byte array */ member
/rk3399_rockchip-uboot/drivers/crypto/fsl/
H A Dfsl_rsa.c34 pkin.e = prop->public_exponent; in fsl_mod_exp()
/rk3399_rockchip-uboot/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.c478 prop->public_exponent = fdt_getprop(blob, node, "rsa,exponent", &length); in rsa_get_key_prop()
479 if (!prop->public_exponent || length < sizeof(uint64_t)) in rsa_get_key_prop()
480 prop->public_exponent = NULL; in rsa_get_key_prop()
/rk3399_rockchip-uboot/board/freescale/common/
H A Dfsl_validate.c802 prop.public_exponent = img->img_key + key_len; in calculate_cmp_img_sig()