OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jwk
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/media/cdm/
json_web_key.cc
61
// Both |key| and |key_id| need to be base64 encoded strings in the
JWK
.
65
// Create the
JWK
, and wrap it into a
JWK
Set.
66
scoped_ptr<base::DictionaryValue>
jwk
(new base::DictionaryValue());
67
jwk
->SetString(kKeyTypeTag, kSymmetricKeyValue);
68
jwk
->SetString(kKeyTag, key_base64);
69
jwk
->SetString(kKeyIdTag, key_id_base64);
71
list->Append(
jwk
.release());
84
static bool ConvertJwkToKeyPair(const DictionaryValue&
jwk
,
86
// Have found a
JWK
, start by checking that it is a symmetric key
144
DictionaryValue*
jwk
= NULL;
local
[
all
...]
json_web_key_unittest.cc
17
void ExtractJWKKeysAndExpect(const std::string&
jwk
,
20
DCHECK(!
jwk
.empty());
22
EXPECT_EQ(expected_result, ExtractKeysFromJWKSet(
jwk
, &keys));
49
// Try a simple
JWK
key (i.e. not in a set)
87
// Try some non-ASCII characters in an otherwise valid
JWK
.
/external/chromium_org/content/renderer/media/crypto/
proxy_decryptor.cc
151
// convert the 2 arrays to a
JWK
and pass it as the single array.
161
std::string
jwk
=
local
163
DCHECK(!
jwk
.empty());
165
session_id, reinterpret_cast<const uint8*>(
jwk
.data()),
jwk
.size());
/external/chromium_org/media/filters/
pipeline_integration_test.cc
206
std::string
jwk
= GenerateJWKSet(
variable
209
reinterpret_cast<const uint8*>(
jwk
.data()),
210
jwk
.size());
[
all
...]
Completed in 269 milliseconds