Home
last modified time | relevance | path

Searched refs:GetRootClientAuthToken (Results 1 – 3 of 3) sorted by relevance

/external/libweave/src/privet/
Dauth_manager_unittest.cc192 TEST_F(AuthManagerTest, GetRootClientAuthToken) { in TEST_F() argument
195 auth_.GetRootClientAuthToken(RootClientTokenOwner::kClient))); in TEST_F()
201 Base64Encode(auth_.GetRootClientAuthToken(RootClientTokenOwner::kCloud))); in TEST_F()
209 auth_.GetRootClientAuthToken(RootClientTokenOwner::kClient))); in TEST_F()
216 Base64Encode(auth.GetRootClientAuthToken(RootClientTokenOwner::kClient))); in TEST_F()
221 auth_.GetRootClientAuthToken(RootClientTokenOwner::kClient), nullptr)); in TEST_F()
226 auto token = auth.GetRootClientAuthToken(RootClientTokenOwner::kClient); in TEST_F()
252 auto root = auth_.GetRootClientAuthToken(RootClientTokenOwner::kCloud); in TEST_F()
272 auto root = auth_.GetRootClientAuthToken(RootClientTokenOwner::kClient); in TEST_F()
280 auto root = auth_.GetRootClientAuthToken(RootClientTokenOwner::kClient); in TEST_F()
[all …]
Dauth_manager.h58 std::vector<uint8_t> GetRootClientAuthToken(RootClientTokenOwner owner) const;
Dauth_manager.cc405 return pending_claims_.back().first->GetRootClientAuthToken(owner); in ClaimRootClientAuthToken()
428 std::vector<uint8_t> AuthManager::GetRootClientAuthToken( in GetRootClientAuthToken() function in weave::privet::AuthManager