HomeSort by relevance Sort by last modified time
    Searched defs:public_exponent (Results 1 - 8 of 8) sorted by null

  /system/keymaster/legacy_support/
rsa_keymaster0_key.cpp 43 uint64_t public_exponent;
44 if (!key_description.GetTagValue(TAG_RSA_PUBLIC_EXPONENT, &public_exponent)) {
56 if (!engine_->GenerateRsaKey(public_exponent, key_size, &key_material))
62 hw_enforced->push_back(TAG_RSA_PUBLIC_EXPONENT, public_exponent);
78 uint64_t public_exponent; local
82 &authorizations, &public_exponent, &key_size);
93 hw_enforced->push_back(TAG_RSA_PUBLIC_EXPONENT, public_exponent);
  /system/keymaster/km_openssl/
rsa_key_factory.cpp 61 uint64_t public_exponent; local
62 if (!authorizations.GetTagValue(TAG_RSA_PUBLIC_EXPONENT, &public_exponent)) {
66 if (public_exponent < kMinimumRsaExponent || public_exponent % 2 != 1) {
87 if (!BN_set_word(exponent.get(), public_exponent) ||
113 uint64_t public_exponent; local
117 &authorizations, &public_exponent, &key_size);
128 uint64_t* public_exponent,
130 if (!updated_description || !public_exponent || !key_size)
145 *public_exponent = BN_get_word(rsa_key->e)
    [all...]
  /external/vboot_reference/utility/
dumpRSAPublicKey.c 23 int public_exponent = BN_get_word(key->e); local
26 if (public_exponent != 65537) {
28 public_exponent);
  /system/keymaster/key_blob_utils/
software_keyblobs.cpp 125 uint64_t public_exponent = BN_get_word(rsa->e); local
126 if (public_exponent == 0xffffffffL)
128 hw_enforced->push_back(TAG_RSA_PUBLIC_EXPONENT, public_exponent);
  /hardware/libhardware/include/hardware/
keymaster_common.h 126 uint64_t public_exponent; member in struct:__anon48276
  /hardware/qcom/keymaster/
keymaster_qcom.h 59 uint8_t public_exponent[KM_KEY_SIZE_MAX]; member in struct:qcom_km_key_blob
  /system/tpm/attestation/server/
pkcs11_key_store.cc 269 unsigned char public_exponent[] = {1, 0, 1}; local
282 {CKA_PUBLIC_EXPONENT, public_exponent, arraysize(public_exponent)},
310 {CKA_PUBLIC_EXPONENT, public_exponent, arraysize(public_exponent)},
  /system/tpm/trunks/
tpm_utility_test.cc 1123 uint32_t public_exponent = 0x10001; local
1183 uint32_t public_exponent = 0x10001; local
1195 uint32_t public_exponent = 0x10001; local
    [all...]

Completed in 200 milliseconds