Home
last modified time | relevance | path

Searched refs:e_bytes (Results 1 – 4 of 4) sorted by relevance

/optee_os/core/drivers/crypto/hisilicon/
H A Dhpre_ecc.h29 uint32_t e_bytes; member
38 uint32_t e_bytes; member
H A Dhpre_ecc.c1045 ecc_sign->e_bytes = MIN(sdata->message.length, msg->curve_bytes); in hpre_ecc_sign_params_fill()
1046 memcpy(e, sdata->message.data, ecc_sign->e_bytes); in hpre_ecc_sign_params_fill()
1047 if (is_all_zero(e, ecc_sign->e_bytes, "ecc sign msg_e")) in hpre_ecc_sign_params_fill()
1063 ecc_sign->e_bytes); in hpre_ecc_sign_params_fill()
1269 ecc_verify->e_bytes); in hpre_ecc_verify_transfer_in()
1321 ecc_verify->e_bytes = MIN(sdata->message.length, msg->curve_bytes); in hpre_ecc_verify_params_fill()
1322 memcpy(e, sdata->message.data, ecc_verify->e_bytes); in hpre_ecc_verify_params_fill()
1323 if (is_all_zero(e, ecc_verify->e_bytes, "ecc verify msg_e")) in hpre_ecc_verify_params_fill()
/optee_os/scripts/
H A Dsign_encrypt.py459 e_bytes = int_to_bytes(subkey_pkey.public_numbers().e)
468 len(e_bytes))
469 self.img = uuid.bytes + shdr_subkey + n_bytes + e_bytes
562 e_bytes = find_attr(TEE_ATTR_RSA_PUBLIC_EXPONENT)
563 e = int.from_bytes(e_bytes, 'big')
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dpsa_crypto_rsa.c217 static psa_status_t psa_rsa_read_exponent(const uint8_t *e_bytes, in psa_rsa_read_exponent() argument
231 acc = (acc << 8) | e_bytes[i]; in psa_rsa_read_exponent()