HomeSort by relevance Sort by last modified time
    Searched refs:raw_key (Results 1 - 14 of 14) 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_openssl.cc 69 const std::string& raw_key) {
71 key->key_ = raw_key;
75 bool SymmetricKey::GetRawKey(std::string* raw_key) {
76 *raw_key = key_;
symmetric_key_nss.cc 85 const std::string& raw_key) {
93 const_cast<char *>(raw_key.data()));
94 key_item.len = raw_key.size();
111 bool SymmetricKey::GetRawKey(std::string* raw_key) {
120 raw_key->assign(reinterpret_cast<char*>(key_item->data), key_item->len);
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...]
symmetric_key.h 54 // Imports an array of key bytes in |raw_key|. This key may have been
58 static SymmetricKey* Import(Algorithm algorithm, const std::string& raw_key);
69 // Warning: |raw_key| holds the raw key as bytes and thus must be handled
71 bool GetRawKey(std::string* raw_key);
  /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/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...]
jwk.cc 513 void WriteSecretKey(const std::vector<uint8>& raw_key,
520 reinterpret_cast<const char*>(Uint8VectorStart(raw_key)), raw_key.size());
    [all...]
  /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/v8/src/
bootstrapper.cc     [all...]
mark-compact.cc 2453 Object* raw_key = map_cache->get(i); local
    [all...]
runtime.cc     [all...]

Completed in 430 milliseconds