HomeSort by relevance Sort by last modified time
    Searched defs:raw_key (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/crypto/
hmac.cc 16 std::string raw_key; local
17 bool result = key->GetRawKey(&raw_key) && Init(raw_key);
20 std::fill(raw_key.begin(), raw_key.end(), 0);
symmetric_key_unittest.cc 18 std::string raw_key; local
19 EXPECT_TRUE(key->GetRawKey(&raw_key));
20 EXPECT_EQ(32U, raw_key.size());
30 EXPECT_NE(raw_key, raw_key2);
99 std::string raw_key; local
100 key->GetRawKey(&raw_key);
101 EXPECT_EQ(test_data.key_size_in_bits / 8, raw_key.size());
103 StringToLowerASCII(base::HexEncode(raw_key.data(),
104 raw_key.size())));
symmetric_key_win.cc 171 scoped_ptr<BYTE[]>* raw_key) {
174 DCHECK(raw_key);
199 raw_key->swap(random);
323 scoped_ptr<BYTE[]> raw_key; local
331 &key, &raw_key);
341 if (raw_key == NULL)
346 raw_key.get(),
348 if (raw_key != NULL)
349 SecureZeroMemory(raw_key.get(), key_size_in_bytes);
465 const std::string& raw_key) {
    [all...]
  /external/chromium_org/media/cdm/
json_web_key.cc 112 std::string raw_key = DecodeBase64(encoded_key); local
113 if (raw_key.empty()) {
119 *jwk_key = std::make_pair(raw_key_id, raw_key);
  /external/chromium_org/chrome/browser/extensions/
component_loader.cc 95 std::string raw_key; local
97 CHECK(manifest->GetString(manifest_keys::kPublicKey, &raw_key));
98 CHECK(Extension::ParsePEMKeyBytes(raw_key, &id_input));
  /external/chromium_org/content/child/webcrypto/
platform_crypto_openssl.cc 343 const std::vector<unsigned char>& raw_key = key->key(); local
348 // which will result if the raw_key vector is empty; an entirely valid
351 const void* const raw_key_voidp = raw_key.size() ? &raw_key[0] : null_key;
362 raw_key.size(),
shared_crypto_unittest.cc 879 std::vector<uint8> raw_key; local
940 std::vector<uint8> raw_key; local
1042 std::vector<uint8> raw_key; local
1162 std::vector<uint8> raw_key; local
1185 std::vector<uint8> raw_key; local
3028 std::vector<uint8> raw_key; local
3229 std::vector<uint8> raw_key; local
3273 std::vector<uint8> raw_key; local
3842 std::vector<uint8> raw_key; local
3961 std::vector<uint8> raw_key; local
    [all...]
  /external/chromium_org/v8/src/
mark-compact.cc 2453 Object* raw_key = map_cache->get(i); local
    [all...]

Completed in 494 milliseconds