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

  /external/chromium_org/chrome/renderer/extensions/
enterprise_platform_keys_natives.cc 52 const blink::WebVector<unsigned char>& public_exponent = local
57 reinterpret_cast<const char*>(public_exponent.data()),
58 public_exponent.size()));
  /external/chromium_org/content/child/webcrypto/
webcrypto_util.cc 230 unsigned int* public_exponent,
244 public_exponent)) {
250 if (*public_exponent != 3 && *public_exponent != 65537)
webcrypto_util.h 73 // * public_exponent is either 3 or 65537
79 unsigned int* public_exponent,
  /system/keymaster/
asymmetric_key.cpp 132 uint64_t public_exponent = RSA_DEFAULT_EXPONENT; local
133 if (!authorizations.GetTagValue(TAG_RSA_PUBLIC_EXPONENT, &public_exponent))
134 authorizations.push_back(Authorization(TAG_RSA_PUBLIC_EXPONENT, public_exponent));
148 if (!BN_set_word(exponent.get(), public_exponent) ||
172 uint64_t public_exponent; local
173 if (authorizations.GetTagValue(TAG_RSA_PUBLIC_EXPONENT, &public_exponent)) {
174 // public_exponent specified, make sure it matches the key
176 if (!BN_set_word(public_exponent_bn.get(), public_exponent))
183 // public_exponent not specified, use the one from the key.
184 public_exponent = BN_get_word(rsa_key->e)
    [all...]
  /hardware/qcom/keymaster/
keymaster_qcom.h 59 uint8_t public_exponent[KM_KEY_SIZE_MAX]; member in struct:qcom_km_key_blob
keymaster_qcom.cpp 151 rsa->e = BN_bin2bn(reinterpret_cast<const unsigned char*>(&keyblob_ptr->public_exponent),
350 send_cmd->rsa_params.public_exponent = rsa_params->public_exponent;
  /external/chromium_org/content/child/webcrypto/nss/
rsa_key_nss.cc 74 CryptoData public_exponent(key->u.rsa.publicExponent.data,
80 public_exponent.bytes(),
81 public_exponent.byte_length(),
118 SECItem public_exponent; member in struct:content::webcrypto::__anon12155::RSAPrivateKey
135 {SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, public_exponent)},
181 if (!ReadUint(key, CKA_PUBLIC_EXPONENT, &out->public_exponent))
203 SECITEM_FreeItem(&out->public_exponent, PR_FALSE);
530 unsigned int public_exponent = 0; local
533 &public_exponent,
544 rsa_gen_params.pe = public_exponent;
    [all...]
  /external/chromium_org/content/child/webcrypto/test/
rsa_ssa_unittest.cc 535 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
540 public_exponent);
611 public_exponent);
652 public_exponent.begin(),
653 public_exponent.end());
676 public_exponent);
724 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
732 public_exponent);
1029 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
1055 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
    [all...]
test_helpers.h 61 const std::vector<uint8_t>& public_exponent);
test_helpers.cc 122 const std::vector<uint8_t>& public_exponent) {
131 vector_as_array(&public_exponent),
132 public_exponent.size()));
aes_cbc_unittest.cc 941 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
    [all...]
  /hardware/libhardware/include/hardware/
keymaster.h 109 uint64_t public_exponent; member in struct:__anon41408
  /external/chromium_org/content/child/webcrypto/openssl/
rsa_key_openssl.cc 256 unsigned int public_exponent = 0; local
259 GetRsaKeyGenParameters(params, &public_exponent, &modulus_length_bits);
269 !BN_set_word(bn.get(), public_exponent)) {
  /external/chromium_org/crypto/
rsa_private_key.h 77 std::vector<uint8>* public_exponent() { return &public_exponent_; }; function in class:crypto::PrivateKeyInfoCodec
rsa_private_key_nss.cc 214 private_key_info.public_exponent()) ||
  /hardware/samsung_slsi/exynos5/libkeymaster/
keymaster_mobicore.cpp 124 rsa_params->modulus_size, (uint32_t)rsa_params->public_exponent,
  /system/security/softkeymaster/
keymaster_openssl.cpp 354 if (BN_set_word(bn.get(), rsa_params->public_exponent) == 0) {
  /device/asus/grouper/keymaster/
keymaster_grouper.cpp 357 const uint64_t exp = rsa_params->public_exponent;
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 357 const uint64_t exp = rsa_params->public_exponent;
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
keymaster_grouper.cpp 357 const uint64_t exp = rsa_params->public_exponent;
  /system/security/keystore/
keystore.cpp     [all...]
  /hardware/libhardware/tests/keymaster/
keymaster_test.cpp 399 public_exponent: RSA_F4,
    [all...]
  /system/vold/
cryptfs.c 170 params.public_exponent = RSA_EXPONENT;
    [all...]

Completed in 2041 milliseconds