/external/chromium_org/components/policy/core/common/cloud/ |
cloud_policy_validator_unittest.cc | 61 std::vector<uint8> public_key; local 63 PolicyBuilder::CreateTestSigningKey()->ExportPublicKey(&public_key)); 75 validator->ValidateSignature(public_key, allow_key_rotation_);
|
/external/oauth/core/src/main/java/net/oauth/signature/ |
RSA_SHA1.java | 58 * c.setProperty(RSA_SHA1.PUBLIC_KEY, consumer_publicRSAKey); 86 final static public String PUBLIC_KEY = "RSA-SHA1.PublicKey"; 114 Object publicKeyObject = accessor.consumer.getProperty(PUBLIC_KEY);
|
/external/chromium_org/net/android/ |
network_library.h | 44 bool StoreKeyPair(const uint8* public_key,
|
/external/wpa_supplicant_8/src/wps/ |
wps_attr_parse.h | 72 const u8 *public_key; member in struct:wps_parse_attr
|
/bootable/recovery/ |
verifier_test.cpp | 147 cert->public_key = &test_key; 157 cert->public_key = &test_f4_key;
|
/external/chromium/chrome/browser/extensions/ |
convert_web_app_unittest.cc | 120 extension->public_key()); 163 extension->public_key());
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
device_local_account_policy_store.cc | 172 if (!key.get() || !key->public_key()) { 193 validator->ValidateSignature(*key->public_key(), false);
|
/external/chromium_org/chrome/browser/extensions/ |
convert_web_app_unittest.cc | 129 extension->public_key()); 179 extension->public_key());
|
install_signer.cc | 215 std::string public_key; local 216 if (!Extension::ParsePEMKeyBytes(kPublicKeyPEM, &public_key)) 225 reinterpret_cast<const uint8*>(public_key.data()), 226 public_key.size()))
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_skey.c | 124 pk = ctx->subject_req->req_info->pubkey->public_key; 125 else pk = ctx->subject_cert->cert_info->key->public_key;
|
/external/openssl/crypto/x509v3/ |
v3_skey.c | 124 pk = ctx->subject_req->req_info->pubkey->public_key; 125 else pk = ctx->subject_cert->cert_info->key->public_key;
|
/external/chromium_org/chrome/browser/extensions/api/networking_private/ |
networking_private_service_client.cc | 37 data_parts.push_back(properties.public_key); 69 std::string public_key; variable 70 if (!base::Base64Decode(params->properties.public_key, &public_key)) { 77 if (!crypto.EncryptByteString(public_key, params->data, &ciphertext)) {
|
/external/chromium_org/google_apis/cup/ |
client_update_protocol.cc | 177 const base::StringPiece& public_key) { 179 DCHECK(!public_key.empty()); 186 if (!result->LoadPublicKey(public_key))
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
BaseCipherSpi.java | 195 if (wrappedKeyType == Cipher.PUBLIC_KEY)
|
/external/chromium/chrome/browser/remoting/ |
directory_add_request.cc | 40 data.SetString("publicKey", host_info.public_key);
|
/external/chromium/chrome/common/ |
service_messages.h | 17 IPC_STRUCT_TRAITS_MEMBER(public_key)
|
/external/chromium_org/content/renderer/webcrypto/ |
webcrypto_impl.h | 101 blink::WebCryptoKey* public_key,
|
webcrypto_impl.cc | 221 blink::WebCryptoKey public_key = blink::WebCryptoKey::createNull(); local 224 algorithm, extractable, usage_mask, &public_key, &private_key)) { 227 DCHECK(public_key.handle()); 229 DCHECK_EQ(algorithm.id(), public_key.algorithm().id()); 231 DCHECK_EQ(true, public_key.extractable()); 233 DCHECK_EQ(usage_mask, public_key.usages()); 235 result.completeWithKeyPair(public_key, private_key);
|
webcrypto_impl_nss.cc | 536 PublicKeyHandle* const public_key = local 540 SECKEY_PublicKeyStrength(public_key->key()); 551 if (PK11_PubEncryptPKCS1(public_key->key(), 719 blink::WebCryptoKey* public_key, 781 *public_key = blink::WebCryptoKey::create(
|
/external/chromium_org/net/cert/ |
x509_util_nss.cc | 87 SECKEYPublicKey* public_key, 94 SECKEY_CreateSubjectPublicKeyInfo(public_key); 262 CERTCertificate* cert = CreateCertificate(key->public_key(), 303 CERTCertificate* cert = CreateCertificate(key->public_key(),
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_service.h | 43 OwnerKey(scoped_ptr<std::vector<uint8> > public_key, 46 const std::vector<uint8>* public_key() { function in class:chromeos::OwnerKey
|
/external/chromium_org/chrome/browser/extensions/api/gcm/ |
gcm_api.cc | 89 !GetExtension()->public_key().empty(); 108 cert_ = SHA1HashHexString(GetExtension()->public_key());
|
/external/chromium_org/third_party/openssl/openssl/patches/ |
channelid.patch | 102 + unsigned char *public_key = NULL, *derp, *der_sig = NULL; 129 + public_key = OPENSSL_malloc(public_key_len); 130 + if (!public_key) 136 + derp = public_key; 176 + // The first byte of public_key will be 0x4, denoting an uncompressed key. 177 + memcpy(d, public_key + 1, 64); 193 + if (public_key) 194 + OPENSSL_free(public_key); [all...] |
/external/openssl/patches/ |
channelid.patch | 102 + unsigned char *public_key = NULL, *derp, *der_sig = NULL; 129 + public_key = OPENSSL_malloc(public_key_len); 130 + if (!public_key) 136 + derp = public_key; 176 + // The first byte of public_key will be 0x4, denoting an uncompressed key. 177 + memcpy(d, public_key + 1, 64); 193 + if (public_key) 194 + OPENSSL_free(public_key); [all...] |
/external/chromium/net/base/ |
dnssec_keyset.cc | 193 base::StringPiece public_key, 207 spki_der.data = (uint8*) public_key.data(); 208 spki_der.len = public_key.size();
|