Home
last modified time | relevance | path

Searched refs:RSA_MAX_KEY_BITS (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/lib/rsa/
H A Drsa-mod-exp.c181 if (key->len > RSA_MAX_KEY_BITS / 32) { in pow_mod()
183 RSA_MAX_KEY_BITS / 32); in pow_mod()
274 if (key.len > RSA_MAX_KEY_BITS || key.len < RSA_MIN_KEY_BITS) { in rsa_mod_exp_sw()
276 key.len, RSA_MIN_KEY_BITS, RSA_MAX_KEY_BITS); in rsa_mod_exp_sw()
326 if (key->len > RSA_MAX_KEY_BITS / 32) { in zynq_pow_mod()
328 RSA_MAX_KEY_BITS / 32); in zynq_pow_mod()
/openbmc/u-boot/include/u-boot/
H A Drsa.h143 #define RSA_MAX_KEY_BITS 4096 macro