Home
last modified time | relevance | path

Searched refs:raw_key (Results 1 – 7 of 7) sorted by relevance

/external/libchrome/crypto/
Dsymmetric_key.cc89 const std::string& raw_key) { in Import() argument
94 if (raw_key.size() != 128/8 && raw_key.size() != 256/8) in Import()
99 key->key_ = raw_key; in Import()
Dsymmetric_key_unittest.cc75 const std::string& raw_key = key->key(); in TEST_P() local
76 EXPECT_EQ(test_data.key_size_in_bits / 8, raw_key.size()); in TEST_P()
78 base::ToLowerASCII(base::HexEncode(raw_key.data(), in TEST_P()
79 raw_key.size()))); in TEST_P()
Dsymmetric_key.h56 const std::string& raw_key);
/external/python/oauth2client/oauth2client/contrib/
Dmultistore_file.py425 raw_key = cred_entry['key']
426 key = _dict_to_tuple_key(raw_key)
441 raw_key = dict(cred_key)
443 raw_creds.append({'key': raw_key, 'credential': raw_cred})
/external/vulkan-validation-layers/scripts/
Dhelper_file_generator.py745 …def dro_to_key(raw_key): return re.search('^VK_DEBUG_REPORT_OBJECT_TYPE_(.*)_EXT$', raw_key).group… argument
746 …def vko_to_key(raw_key): return re.search('^VK_OBJECT_TYPE_(.*)', raw_key).group(1).lower().replac… argument
747 … def kenum_to_key(raw_key): return re.search('^kVulkanObjectType(.*)', raw_key).group(1).lower() argument
/external/openssh/
Dsshconnect.c719 struct sshkey *raw_key = NULL; in check_host_key() local
1135 if ((r = sshkey_from_private(host_key, &raw_key)) != 0) in check_host_key()
1138 if ((r = sshkey_drop_cert(raw_key)) != 0) in check_host_key()
1140 host_key = raw_key; in check_host_key()
1143 sshkey_free(raw_key); in check_host_key()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
Dgdbremote_testcase.py1046 raw_key = auxv_data[:word_size]
1054 key = unpack_endian_binary_string(endian, raw_key)