HomeSort by relevance Sort by last modified time
    Searched full:public_key (Results 51 - 75 of 166) sorted by null

1 23 4 5 6 7

  /external/chromium_org/crypto/
ec_private_key.h 31 // (The difference in types of key() and public_key() make this a little
75 // Imports the key pair into |slot| and returns in |public_key| and |key|.
88 SECKEYPublicKey** public_key);
95 SECKEYPublicKey* public_key() { return public_key_; } function in class:crypto::ECPrivateKey
  /external/chromium_org/google_apis/cup/
client_update_protocol.h 36 // must be non-negative. |public_key| is expected to be a DER-encoded ASN.1
39 int key_version, const base::StringPiece& public_key);
79 // Decodes |public_key| into the appropriate internal structures. Returns
81 bool LoadPublicKey(const base::StringPiece& public_key);
  /external/chromium_org/remoting/host/setup/
service_client.h 44 const std::string& public_key,
  /bootable/recovery/
verifier.cpp 200 if (RSA_verify(pKeys[i].public_key, eocd + eocd_size - 6 - RSANUMBYTES,
261 cert->public_key = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
267 cert->public_key->exponent = 3;
274 cert->public_key->exponent = 65537;
278 cert->public_key->exponent = 3;
282 cert->public_key->exponent = 65537;
290 RSAPublicKey* key = cert->public_key;
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dh_ameth.c 79 ASN1_INTEGER *public_key = NULL; local
103 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
110 if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
116 ASN1_INTEGER_free(public_key);
121 if (public_key)
122 ASN1_INTEGER_free(public_key);
  /external/openssl/crypto/dh/
dh_ameth.c 79 ASN1_INTEGER *public_key = NULL; local
103 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
110 if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
116 ASN1_INTEGER_free(public_key);
121 if (public_key)
122 ASN1_INTEGER_free(public_key);
  /external/chromium/chrome/browser/extensions/
convert_user_script_unittest.cc 35 extension->public_key());
75 extension->public_key());
  /external/chromium_org/chrome/app/
signature_validator_win_unittest.cc 79 uint8* public_key = blob.pbData; local
83 base::StringPiece key_bytes(reinterpret_cast<char*>(public_key),
  /external/chromium_org/chrome/browser/chromeos/policy/
device_cloud_policy_store_chromeos.cc 42 !owner_key->public_key()) {
49 validator->ValidateSignature(*owner_key->public_key(), true);
user_cloud_policy_store_chromeos_unittest.cc 77 std::vector<uint8> public_key; variable
78 ASSERT_TRUE(policy_.GetSigningKey()->ExportPublicKey(&public_key));
79 StoreUserPolicyKey(public_key); variable
127 void StoreUserPolicyKey(const std::vector<uint8>& public_key) {
131 reinterpret_cast<const char*>(public_key.data()),
132 public_key.size()));
  /external/chromium/chrome/browser/chromeos/login/
mock_owner_key_utils.h 29 const std::vector<uint8> public_key));
  /external/chromium/net/base/
dnssec_keyset.h 50 base::StringPiece public_key,
  /external/chromium_org/chrome/browser/devtools/adb/
android_rsa.cc 207 std::vector<uint8> public_key; local
211 key->ExportPublicKey(&public_key);
212 std::string asn1(public_key.begin(), public_key.end());
  /external/wpa_supplicant_8/src/tls/
x509v3.h 58 u8 *public_key; member in struct:x509_certificate
  /external/chromium_org/chrome/browser/component_updater/
component_unpacker.cc 82 const std::vector<uint8>& public_key() const { return public_key_; } function in class:__anon7225::CRXValidator
142 sha256->Update(&(validator.public_key()[0]), validator.public_key().size());
  /external/chromium_org/chromeos/dbus/
shill_manager_client.cc 153 writer.AppendString(properties.public_key);
172 writer.AppendString(properties.public_key);
192 writer.AppendString(properties.public_key);
shill_manager_client_unittest.cc 325 arguments.push_back("public_key");
339 properties.public_key = arguments[1];
364 arguments.push_back("public_key");
382 properties.public_key = arguments[1];
408 arguments.push_back("public_key");
423 properties.public_key = arguments[1];
shill_manager_client.h 86 std::string public_key; member in struct:chromeos::ShillManagerClient::VerificationProperties
183 // by the given |service_path|, encrypted using the |public_key| for the
192 // |data| encrypted using the |public_key| for the trusted device. If the
  /external/chromium_org/remoting/host/
register_support_host_request.cc 82 XmlElement* public_key = new XmlElement( local
84 public_key->AddText(key_pair_->GetPublicKey());
85 query->AddElement(public_key);
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_service.cc 38 OwnerKey::OwnerKey(scoped_ptr<std::vector<uint8> > public_key,
40 : public_key_(public_key.Pass()),
152 return owner_key_->public_key() ? OWNERSHIP_TAKEN : OWNERSHIP_NONE;
165 owner_key_->public_key() ? OWNERSHIP_TAKEN : OWNERSHIP_NONE));
291 new_key->public_key() ? OWNERSHIP_TAKEN : OWNERSHIP_NONE;
  /external/chromium_org/chrome/browser/extensions/
convert_user_script_unittest.cc 61 extension->public_key());
114 extension->public_key());
180 extension->public_key());
215 extension->public_key());
251 extension->public_key());
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.cc 263 std::string public_key; local
266 Extension::FormatPEMForFileOutput(pem, &public_key,
268 return public_key;
278 const std::string& public_key = NameToPublicKey(name); local
279 source.SetString(extensions::manifest_keys::kPublicKey, public_key);
  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_ameth.c 77 ASN1_INTEGER *public_key = NULL; local
113 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
119 if (!(dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
125 ASN1_INTEGER_free(public_key);
130 if (public_key)
131 ASN1_INTEGER_free(public_key);
  /external/openssl/crypto/dsa/
dsa_ameth.c 77 ASN1_INTEGER *public_key = NULL; local
113 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
119 if (!(dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
125 ASN1_INTEGER_free(public_key);
130 if (public_key)
131 ASN1_INTEGER_free(public_key);
  /external/chromium_org/chrome/browser/extensions/api/cast_channel/
cast_auth_util_nss.cc 118 crypto::ScopedSECKEYPublicKey public_key(CERT_ExtractPublicKey(cert.get()));
119 if (!public_key.get()) {
131 public_key.get(),

Completed in 313 milliseconds

1 23 4 5 6 7