HomeSort by relevance Sort by last modified time
    Searched defs:passbuf (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/http/
http_auth_handler_ntlm_portable.cc 263 std::string passbuf = base::SysWideToNativeMB(base::UTF16ToWide(password)); local
264 StringToUpperASCII(&passbuf);
265 passbuf.resize(14, '\0');
268 DESMakeKey(reinterpret_cast<const uint8*>(passbuf.data()) , k1);
269 DESMakeKey(reinterpret_cast<const uint8*>(passbuf.data()) + 7, k2);
270 ZapString(&passbuf);
286 uint8* passbuf; local
288 passbuf = static_cast<uint8*>(malloc(len * 2));
289 WriteUnicodeLE(passbuf, password.data(), len);
290 weak_crypto::MD4Sum(passbuf, len * 2, hash)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
httpcommon.cc 947 unsigned char userbuf[256], passbuf[256], domainbuf[16]; local
963 _min(sizeof(passbuf) - 1, password.GetLength()));
964 memcpy(passbuf, sensitive, auth_id.PasswordLength);
965 passbuf[auth_id.PasswordLength] = 0;
976 _min(sizeof(passbuf) - 1, password.GetLength()));
977 memcpy(passbuf, sensitive, auth_id.PasswordLength);
978 passbuf[auth_id.PasswordLength] = 0;
984 auth_id.Password = passbuf;

Completed in 36 milliseconds