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/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...]
  /hardware/libhardware/include/hardware/
keymaster.h 109 uint64_t public_exponent; member in struct:__anon40494
  /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/
jwk.cc 526 const std::vector<uint8>& public_exponent,
530 DCHECK(public_exponent.size());
533 jwk_dict->SetString("e", Base64EncodeUrlSafe(public_exponent));
548 std::vector<uint8> public_exponent; local
558 &public_exponent,
570 jwk_dict->SetString("e", Base64EncodeUrlSafe(public_exponent));
981 std::vector<uint8> public_exponent; local
    [all...]
shared_crypto.cc 697 unsigned long public_exponent = 0; local
700 &public_exponent) ||
701 (public_exponent != 3 && public_exponent != 65537)) {
710 public_exponent,
    [all...]
platform_crypto_nss.cc 602 CryptoData public_exponent(key->u.rsa.publicExponent.data,
611 public_exponent.bytes(),
612 public_exponent.byte_length(),
754 SECItem public_exponent; member in struct:content::webcrypto::platform::__anon11816::RSAPrivateKey
771 {SEC_ASN1_INTEGER, offsetof(RSAPrivateKey, public_exponent)},
817 if (!ReadUint(key, CKA_PUBLIC_EXPONENT, &out->public_exponent))
839 SECITEM_FreeItem(&out->public_exponent, PR_FALSE);
    [all...]
shared_crypto_unittest.cc 151 const std::vector<uint8>& public_exponent) {
160 webcrypto::Uint8VectorStart(public_exponent),
161 public_exponent.size()));
2427 const std::vector<uint8> public_exponent = HexStringToBytes("010001"); local
2615 const std::vector<uint8> public_exponent = HexStringToBytes("010001"); local
4221 const std::vector<uint8> public_exponent = HexStringToBytes("010001"); local
4247 const std::vector<uint8> public_exponent = HexStringToBytes("010001"); local
4301 const std::vector<uint8> public_exponent = HexStringToBytes("010001"); local
    [all...]

Completed in 160 milliseconds