Searched refs:key_base64 (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/remoting/base/
H A Drsa_key_pair.cc40 const std::string& key_base64) {
42 if (!base::Base64Decode(key_base64, &key_str)) {
65 std::string key_base64; local
66 base::Base64Encode(key_str, &key_base64);
67 return key_base64;
39 FromString( const std::string& key_base64) argument
H A Drsa_key_pair.h25 static scoped_refptr<RsaKeyPair> FromString(const std::string& key_base64);
/external/chromium_org/remoting/protocol/
H A Dauthenticator_test_base.cc56 std::string key_base64; local
57 base::Base64Encode(key_string, &key_base64);
58 key_pair_ = RsaKeyPair::FromString(key_base64);
H A Dssl_hmac_channel_authenticator_unittest.cc66 std::string key_base64; variable
67 base::Base64Encode(key_string, &key_base64);
68 key_pair_ = RsaKeyPair::FromString(key_base64);
/external/chromium_org/media/cdm/
H A Djson_web_key.cc67 std::string key_base64 = EncodeBase64(key, key_length); local
73 jwk->SetString(kKeyTag, key_base64);
/external/chromium_org/remoting/test/
H A Dprotocol_perftest.cc267 std::string key_base64; local
268 base::Base64Encode(key_string, &key_base64);
269 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(key_base64);
/external/chromium_org/remoting/host/
H A Dremoting_me2me_host.cc819 std::string key_base64; local
820 if (!config->GetString(kPrivateKeyConfigPath, &key_base64)) {
825 key_pair_ = RsaKeyPair::FromString(key_base64);

Completed in 113 milliseconds