Searched refs:password (Results 51 - 75 of 79) sorted by relevance

1234

/haiku/src/bin/network/ppp_up/
H A DConnectionView.cpp37 static const char *kLabelSavePassword = "Save password";
76 fPassword = new BTextControl(rect, "password", kLabelPassword, NULL, NULL);
162 // load username and password
169 BString username, password; local
179 && parameter.FindString(MDSU_VALUES, &password) == B_OK)
183 fPassword->SetText(password.String());
/haiku/src/add-ons/network_settings/dialup/
H A DGeneralAddon.cpp172 // load username and password
287 // save password, too
288 BMessage password; local
289 password.AddString(MDSU_NAME, "Password");
290 password.AddString(MDSU_VALUES, fGeneralView->Password());
291 authenticator.AddMessage(MDSU_PARAMETERS, &password);
389 fPassword = new BTextControl("password", kLabelPassword, NULL, NULL);
/haiku/src/kits/network/libnetservices/
H A DHttpAuthentication.cpp49 BHttpAuthentication::BHttpAuthentication(const BString& username, const BString& password) argument
53 fPassword(password)
110 BHttpAuthentication::SetPassword(const BString& password) argument
113 fPassword = password;
405 PRINT(("HttpAuth: > password = %s\n", fPassword.String()));
/haiku/src/tests/add-ons/mail/imap/
H A Dimap_tester.cpp41 printf("Usage: %s <server> <username> <password>\n", kProgramName);
287 const char* password = argv[3]; local
295 status_t status = sProtocol.Connect(address, user, password, useSSL);
/haiku/src/servers/keystore/
H A DKeyRequestWindow.cpp141 BPasswordKey password(fPassword->Text(), B_KEY_PURPOSE_KEYRING, "");
142 return password.Flatten(keyMessage);
/haiku/src/tests/kits/net/service/
H A DUrlTest.cpp83 CPPUNIT_ASSERT_MESSAGE("Retain invalid state on password change",
102 url.SetPassword("password");
111 CPPUNIT_ASSERT_EQUAL(BString("password"), url.Password());
112 CPPUNIT_ASSERT_EQUAL(BString("user:password"), url.UserInfo());
114 CPPUNIT_ASSERT_EQUAL(BString("user:password@example.com:8080"),
121 "http://user:password@example.com:8080/path?query=value#fragment"),
167 const char* password; member in struct:__anon4::__anon5
226 CPPUNIT_ASSERT_EQUAL(BString(kTestExplode[testIndex].expected.password),
H A Dtestserver.py40 '/(?P<username>[a-z0-9]+)/(?P<password>[a-z0-9]+)',
209 # /auth/<strategy>/<expected-username>/<expected-password>
216 expected_password = match.group('password')
235 password = None
242 username, password = decoded.decode('utf-8').split(':')
247 or password != expected_password:
388 :param expected_password: The known correct password of the user
/haiku/src/kits/network/libnetapi/
H A DNetworkDevice.cpp861 BNetworkDevice::JoinNetwork(const char* name, const char* password) argument
871 if (status == B_OK && password != NULL)
872 status = message.AddString("password", password);
890 const char* password)
892 return JoinNetwork(network.address, password);
898 const char* password)
910 if (status == B_OK && password != NULL)
911 status = message.AddString("password", password);
889 JoinNetwork(const wireless_network& network, const char* password) argument
897 JoinNetwork(const BNetworkAddress& address, const char* password) argument
[all...]
/haiku/src/kits/network/libnetservices2/
H A DHttpRequest.cpp183 build_basic_http_header(const BString& username, const BString& password) argument
186 basicEncode << username << ":" << password; local
505 fData->authentication->username, fData->authentication->password);
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py40 '/(?P<username>[a-z0-9]+)/(?P<password>[a-z0-9]+)',
209 # /auth/<strategy>/<expected-username>/<expected-password>
216 expected_password = match.group('password')
235 password = None
242 username, password = decoded.decode('utf-8').split(':')
247 or password != expected_password:
388 :param expected_password: The known correct password of the user
/haiku/headers/os/support/
H A DUrl.h29 BUrl& SetPassword(const BString& password);
/haiku/headers/private/netservices2/
H A DHttpRequest.h78 BString password; member in struct:BPrivate::Network::BHttpAuthentication
/haiku/headers/private/netservices/
H A DHttpRequest.h45 void SetPassword(const BString& password);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.cpp46 const char* password, bool useSSL)
70 LoginCommand login(username, password);
45 Connect(const BNetworkAddress& address, const char* username, const char* password, bool useSSL) argument
H A DCommands.cpp158 LoginCommand::LoginCommand(const char* user, const char* password) argument
161 fPassword(password)
H A DCommands.h81 const char* password);
/haiku/src/kits/app/
H A DKeyStore.cpp396 BKeyStore::GeneratePassword(BPasswordKey& password, size_t length, uint32 flags) argument
403 BKeyStore::PasswordStrength(const char* password) argument
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNetFSServer.cpp374 // get user name and password
376 const char* password; local
381 if (message->FindString("password", &password) != B_OK)
382 password = NULL;
385 status_t error = fSecurityContext->AddUser(user, password);
812 const char* password = parameter.GetParameterValue("password"); local
817 // PRINT(("user: %s, password: %s\n", parameter.ValueAt(0),
818 // parameter.GetParameterValue("password")));
[all...]
/haiku/src/apps/expander/
H A DExpanderWindow.cpp428 if (strstr(string.String(), "Enter password") != NULL) {
430 BString password; local
433 alert->Go(password);
435 fExpandingThread->PushInput(password);
447 if (strstr(string.String(), "password") != NULL) {
448 BString password; local
451 alert->Go(password);
453 fExpandingThread->PushInput(password);
/haiku/src/servers/net/
H A DNetServer.cpp1031 const char* password; local
1032 if (message.FindString("password", &password) != B_OK && found)
1033 password = networkMessage.FindString("password");
1117 if (status == B_OK && password != NULL)
1118 status = join.AddString("password", password);
/haiku/src/bin/network/ifconfig/
H A Difconfig.cpp80 "[<password>]]\n\n"
388 fprintf(stderr, "usage: %s %s join <network> [<password>]\n",
393 const char* password = NULL; local
395 password = args[1];
400 status = device.JoinNetwork(link, password);
402 status = device.JoinNetwork(args[0], password);
/haiku/src/apps/haikudepot/model/
H A DModel.cpp37 #define KEY_STORE_IDENTIFIER_PREFIX "hds.password."
39 // so that HDS username/password pairs can be identified.
740 HDERROR("error occurred when removing password for nickname "
747 HDERROR("error occurred when finding password for nickname "
757 BString password; local
760 // this happens when the user is logging out. Best to remove the password
773 password = key.Password();
775 if (password.IsEmpty())
779 SetCredentials(nickname, password, false);
797 // no point continuing to store the password fo
[all...]
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y165 %type <s> pathstring pathname password username
182 { "PASS", PASS, ZSTR1, 1, "[<sp> [password]]" },
285 | PASS SP password CRLF
929 password
/haiku/src/preferences/mail/
H A DAutoConfigView.cpp47 fPasswordView = new BTextControl("password", B_TRANSLATE("Password:"),
148 info.password = fPasswordView->Text();
/haiku/src/kits/support/
H A DUrl.cpp253 BUrl::SetPassword(const BString& password) argument
255 fPassword = password;
1231 // if the host was preceded by a username + password couple

Completed in 214 milliseconds

1234