HomeSort by relevance Sort by last modified time
    Searched refs:Password (Results 1 - 25 of 39) sorted by null

1 2

  /external/lzma/CPP/7zip/UI/Console/
OpenCallbackConsole.cpp 29 HRESULT COpenCallbackConsole::Open_CryptoGetTextPassword(BSTR *password)
35 Password = GetPassword(OutStream);
38 return StringToBstr(Password, password);
41 HRESULT COpenCallbackConsole::Open_GetPasswordIfAny(UString &password)
44 password = Password;
OpenCallbackConsole.h 19 UString Password;
UpdateCallbackConsole.h 27 UString Password;
UpdateCallbackConsole.cpp 197 HRESULT CUpdateCallbackConsole::CryptoGetTextPassword2(Int32 *passwordIsDefined, BSTR *password)
199 *password = NULL;
212 Password = GetPassword(OutStream);
217 return StringToBstr(Password, password);
222 HRESULT CUpdateCallbackConsole::CryptoGetTextPassword(BSTR *password)
224 *password = NULL;
235 Password = GetPassword(OutStream);
239 return StringToBstr(Password, password);
    [all...]
Main.cpp 89 " -p{Password}: set Password\n"
390 ecs->Password = options.Password;
400 openCallback.Password = options.Password;
478 options.Password,
501 options.PasswordEnabled && !options.Password.IsEmpty();
503 openCallback.Password = options.Password;
    [all...]
ExtractCallbackConsole.cpp 43 static const char *kCrcFailedEncrypted = "CRC Failed in encrypted file. Wrong password?";
45 static const char *kDataErrorEncrypted = "Data Error in encrypted file. Wrong password?";
141 HRESULT CExtractCallbackConsole::SetPassword(const UString &password)
144 Password = password;
148 STDMETHODIMP CExtractCallbackConsole::CryptoGetTextPassword(BSTR *password)
152 Password = GetPassword(OutStream);
155 return StringToBstr(Password, password);
177 "Can not open encrypted archive. Wrong password?" :
    [all...]
ExtractCallbackConsole.h 48 HRESULT SetPassword(const UString &password);
49 STDMETHOD(CryptoGetTextPassword)(BSTR *password);
52 UString Password;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 30 ATTRIBUTE MS-Old-ARAP-Password 19 string Microsoft
31 ATTRIBUTE MS-New-ARAP-Password 20 string Microsoft
60 # MS-ARAP-Password-Change-Reason Values
62 VALUE MS-ARAP-PW-Change-Reason Just-Change-Password 1
63 VALUE MS-ARAP-PW-Change-Reason Expired-Password 2
64 VALUE MS-ARAP-PW-Change-Reason Admin-Requires-Password-Change 3
65 VALUE MS-ARAP-PW-Change-Reason Password-Too-Short 4
dictionary.compat 12 ATTRIBUTE Old-Password 17 string
dictionary 47 ATTRIBUTE Password 2 string
48 ATTRIBUTE CHAP-Password 3 string
118 ATTRIBUTE Crypt-Password 1006 string
243 #VALUE Server-Config Password-Expiration 30
244 #VALUE Server-Config Password-Warning 5
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
userdatarequest.cpp 60 if (strcmp(tmp, "PASSWORD") == 0) {
61 queryField->setText(tr("Password: "));
62 queryEdit->setEchoMode(QLineEdit::Password);
64 queryField->setText(tr("New password: "));
65 queryEdit->setEchoMode(QLineEdit::Password);
70 queryEdit->setEchoMode(QLineEdit::Password);
  /external/lzma/CPP/7zip/Archive/7z/
7zCompressionMode.h 38 UString Password;
7zUpdate.cpp 657 UString Password;
660 STDMETHOD(CryptoGetTextPassword)(BSTR *password);
663 STDMETHODIMP CCryptoGetTextPassword::CryptoGetTextPassword(BSTR *password)
665 return StringToBstr(Password, password);
848 getPasswordSpec->Password = options.Method->Password;
853 CMyComBSTR password;
854 RINOK(getDecoderPassword->CryptoGetTextPassword(&password));
855 getPasswordSpec->Password = password;
    [all...]
7zEncode.cpp 116 const UInt32 sizeInBytes = _options.Password.Length() * 2;
118 for (int i = 0; i < _options.Password.Length(); i++)
120 wchar_t c = _options.Password[i];
294 // it has only password method;
7zHandlerOut.cpp 340 CMyComBSTR password; local
342 RINOK(getPassword2->CryptoGetTextPassword2(&passwordIsDefined, &password));
345 methodMode.Password = password;
366 headerMethod.Password = methodMode.Password;
  /external/chromium/chrome/browser/sync/util/
nigori_unittest.cc 18 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
21 EXPECT_TRUE(nigori.Permute(Nigori::Password, "test name",
32 EXPECT_TRUE(nigori1.InitByDerivation("example.com", "username", "password"));
35 EXPECT_TRUE(nigori1.Permute(Nigori::Password,
40 EXPECT_TRUE(nigori2.InitByDerivation("example.com", "username", "password"));
43 EXPECT_TRUE(nigori2.Permute(Nigori::Password,
53 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
68 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
83 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
98 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
    [all...]
nigori.h 28 Password = 1,
34 // Initialize the client with the given |hostname|, |username| and |password|.
37 const std::string& password);
46 // |username| and |password| are kept constant, a given |type| and |name| pair
cryptographer.cc 14 // a username, and a password) by calling Permute on this string. Since the
114 params.password)) {
115 NOTREACHED(); // Invalid username or password.
124 if (!nigori->Permute(Nigori::Password, kNigoriKeyName, &name)) {
153 params.password)) {
  /external/chromium_org/sync/util/
nigori_unittest.cc 18 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
21 EXPECT_TRUE(nigori.Permute(Nigori::Password, "test name",
32 EXPECT_TRUE(nigori1.InitByDerivation("example.com", "username", "password"));
35 EXPECT_TRUE(nigori1.Permute(Nigori::Password,
40 EXPECT_TRUE(nigori2.InitByDerivation("example.com", "username", "password"));
43 EXPECT_TRUE(nigori2.Permute(Nigori::Password,
53 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
68 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
83 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
98 EXPECT_TRUE(nigori.InitByDerivation("example.com", "username", "password"));
    [all...]
nigori.h 31 Password = 1,
37 // Initialize the client with the given |hostname|, |username| and |password|.
40 const std::string& password);
49 // |username| and |password| are kept constant, a given |type| and |name| pair
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityModel.java 34 Password, // Unlock by entering an alphanumeric password
35 PIN, // Strictly numeric password
37 Account, // Unlock by entering an account's login and password.
96 SecurityMode.Password : SecurityMode.None;
124 && (mode == SecurityMode.Password
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.h 71 UString Password;
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 116 STDMETHOD(CryptoGetTextPassword)(BSTR *password);
119 UString Password;
134 STDMETHODIMP CArchiveOpenCallback::CryptoGetTextPassword(BSTR *password)
138 // You can ask real password here from user
139 // Password = GetPassword(OutStream);
141 PrintError("Password is not defined");
144 return StringToBstr(Password, password);
205 UString Password;
401 STDMETHODIMP CArchiveExtractCallback::CryptoGetTextPassword(BSTR *password)
    [all...]
  /external/libppp/src/
chap_ms.c 179 char *UserName, char *Password,
186 NtPasswordHash(Password, PasswordLen, PasswordHash);
214 GenerateAuthenticatorResponse(char *Password, int PasswordLen,
243 * Hash the password with MD4
245 NtPasswordHash(Password, PasswordLen, PasswordHash);
385 /* passwordHash 16-bytes MD4 hashed password
  /packages/services/Telephony/src/com/android/phone/sip/
SipEditor.java 82 Password(R.string.password, 0, R.string.default_preference_summary),
121 if (this != Password) {
131 } else if (this == Password) {
421 .setPassword(PreferenceKey.Password.getValue())
447 } else if (pref == PreferenceKey.Password.preference) {

Completed in 286 milliseconds

1 2