HomeSort by relevance Sort by last modified time
    Searched defs:public_exponent (Results 1 - 9 of 9) 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/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
  /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...]
  /external/chromium_org/content/child/webcrypto/test/
aes_cbc_unittest.cc 941 const std::vector<uint8_t> public_exponent = HexStringToBytes("010001"); local
    [all...]
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...]
  /hardware/libhardware/include/hardware/
keymaster.h 109 uint64_t public_exponent; member in struct:__anon41408
  /hardware/qcom/keymaster/
keymaster_qcom.h 59 uint8_t public_exponent[KM_KEY_SIZE_MAX]; member in struct:qcom_km_key_blob
  /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...]

Completed in 464 milliseconds