Home
last modified time | relevance | path

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

/system/connectivity/shill/
Dcrypto_util_proxy.cc47 const char CryptoUtilProxy::kCommandEncrypt[] = "encrypt";
48 const char CryptoUtilProxy::kCommandVerify[] = "verify";
49 const char CryptoUtilProxy::kCryptoUtilShimPath[] = SHIMDIR "/crypto-util";
50 const char CryptoUtilProxy::kDestinationVerificationUser[] = "shill-crypto";
51 const uint64_t CryptoUtilProxy::kRequiredCapabilities = 0;
52 const int CryptoUtilProxy::kShimJobTimeoutMilliseconds = 30 * 1000;
59 CryptoUtilProxy::CryptoUtilProxy(EventDispatcher* dispatcher) in CryptoUtilProxy() function in shill::CryptoUtilProxy
71 CryptoUtilProxy::~CryptoUtilProxy() { in ~CryptoUtilProxy()
76 bool CryptoUtilProxy::VerifyDestination( in VerifyDestination()
114 &CryptoUtilProxy::HandleVerifyResult, in VerifyDestination()
[all …]
Dcrypto_util_proxy_unittest.cc134 base::FilePath(CryptoUtilProxy::kCryptoUtilShimPath), in StartAndCheckShim()
136 vector<string>{CryptoUtilProxy::kCommandVerify}, in StartAndCheckShim()
137 vector<string>{CryptoUtilProxy::kCommandEncrypt}), in StartAndCheckShim()
243 StartShimForCommand(CryptoUtilProxy::kCommandVerify, _, _)) in TEST_F()
268 StartShimForCommand(CryptoUtilProxy::kCommandEncrypt, _, _)) in TEST_F()
290 StartAndCheckShim(CryptoUtilProxy::kCommandEncrypt, in TEST_F()
303 StartAndCheckShim(CryptoUtilProxy::kCommandEncrypt, in TEST_F()
323 StartAndCheckShim(CryptoUtilProxy::kCommandEncrypt, in TEST_F()
333 StartAndCheckShim(CryptoUtilProxy::kCommandEncrypt, in TEST_F()
343 StartAndCheckShim(CryptoUtilProxy::kCommandEncrypt, in TEST_F()
[all …]
Dcrypto_util_proxy.h42 class CryptoUtilProxy : public base::SupportsWeakPtr<CryptoUtilProxy> {
48 explicit CryptoUtilProxy(EventDispatcher* dispatcher);
49 virtual ~CryptoUtilProxy();
151 DISALLOW_COPY_AND_ASSIGN(CryptoUtilProxy);
Dmock_crypto_util_proxy.cc35 : CryptoUtilProxy(dispatcher) { in MockCryptoUtilProxy()
56 return CryptoUtilProxy::VerifyDestination(certificate, public_key, in RealVerifyDestination()
67 return CryptoUtilProxy::EncryptData(public_key, data, in RealEncryptData()
75 return CryptoUtilProxy::StartShimForCommand(command, input, in RealStartShimForCommand()
Dmock_crypto_util_proxy.h34 : public CryptoUtilProxy,
Dmanager.h883 std::unique_ptr<CryptoUtilProxy> crypto_util_proxy_;
Dmanager.cc173 crypto_util_proxy_(new CryptoUtilProxy(dispatcher)), in Manager()