Home
last modified time | relevance | path

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

/external/openssh/regress/
Dssh2putty.sh21 public_exponent=`
33 echo "rsa2@$PORT:$HOST $public_exponent,$modulus"
/external/vboot_reference/utility/
DdumpRSAPublicKey.c23 int public_exponent = BN_get_word(key->e); in check() local
26 if (public_exponent != 65537) { in check()
28 public_exponent); in check()
/external/u-boot/lib/rsa/
Drsa-verify.c170 prop.public_exponent = fdt_getprop(blob, node, "rsa,exponent", &length); in rsa_verify_with_keynode()
171 if (!prop.public_exponent || length < sizeof(uint64_t)) in rsa_verify_with_keynode()
172 prop.public_exponent = NULL; in rsa_verify_with_keynode()
Drsa-mod-exp.c262 if (!prop->public_exponent) in rsa_mod_exp_sw()
266 fdt64_to_cpu(*((uint64_t *)(prop->public_exponent))); in rsa_mod_exp_sw()
/external/u-boot/test/py/tests/
Dtest_vboot.py177 public_exponent = 65537
181 '2>/dev/null' % (tmpdir, public_exponent))
/external/u-boot/include/u-boot/
Drsa-mod-exp.h23 const void *public_exponent; /* public exponent as byte array */ member
/external/u-boot/drivers/crypto/fsl/
Dfsl_rsa.c33 pkin.e = prop->public_exponent; in fsl_mod_exp()
/external/nos/test/system-test-harness/src/
Dkeymaster-import-key-tests.cc71 int public_exponent_tag, uint32_t public_exponent, in initRSARequest() argument
75 request->mutable_rsa()->set_e(public_exponent); in initRSARequest()
/external/scapy/scapy/layers/tls/
Dcert.py262 private_key = rsa.generate_private_key(public_exponent=pubExp,
458 self.key = rsa.generate_private_key(public_exponent=pubExp,
/external/u-boot/board/freescale/common/
Dfsl_validate.c801 prop.public_exponent = img->img_key + key_len; in calculate_cmp_img_sig()