Searched refs:CryptString (Results 1 – 10 of 10) sorted by relevance
/aosp_15_r20/external/webrtc/rtc_base/ |
H A D | crypt_string.cc | 37 CryptString::CryptString() : impl_(new EmptyCryptStringImpl()) {} in CryptString() function in rtc::CryptString 39 CryptString::CryptString(const CryptString& other) in CryptString() function in rtc::CryptString 42 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {} in CryptString() function in rtc::CryptString 44 CryptString::~CryptString() = default;
|
H A D | crypt_string.h | 42 class CryptString { 44 CryptString(); 49 CryptString(const CryptString& other); 50 explicit CryptString(const CryptStringImpl& impl); 51 ~CryptString(); 52 CryptString& operator=(const CryptString& other) {
|
H A D | socket_adapters.h | 89 const CryptString& password); 119 CryptString pass_; 148 const CryptString& password); 173 CryptString pass_;
|
H A D | http_common.h | 20 class CryptString; variable 44 const CryptString& password,
|
H A D | proxy_info.h | 31 CryptString password;
|
H A D | socket_adapters.cc | 225 const CryptString& password) in AsyncHttpsProxySocket() 477 const CryptString& password) in AsyncSocksProxySocket()
|
H A D | proxy_unittest.cc | 49 socket, kSocksProxyIntAddr, "", rtc::CryptString()); in TEST_F()
|
H A D | http_common.cc | 258 const CryptString& password, in HttpAuthenticate()
|
/aosp_15_r20/external/cronet/crypto/ |
H A D | encryptor.cc | 66 return CryptString(/*do_encrypt=*/true, plaintext, ciphertext); in Encrypt() 75 return CryptString(/*do_encrypt=*/false, ciphertext, plaintext); in Decrypt() 97 bool Encryptor::CryptString(bool do_encrypt, in CryptString() function in crypto::Encryptor
|
H A D | encryptor.h | 79 bool CryptString(bool do_encrypt,
|