Searched refs:password (Results 1 - 25 of 79) sorted by last modified time

1234

/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/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/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()));
H A DHttpRequest.cpp231 BHttpRequest::SetPassword(const BString& password) argument
233 fOptPassword = password;
518 // If we received an username and password, add them
/haiku/headers/private/netservices/
H A DHttpAuthentication.h52 const BString& password);
60 void SetPassword(const BString& password);
H A DHttpRequest.h45 void SetPassword(const BString& 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/add-ons/kernel/file_systems/netfs/server/
H A DClientConnection.cpp552 request->password.GetString(), &user));
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/tests/kits/net/
H A Dwlan_test.cpp19 fprintf(stderr, "%s: <device> join|leave|list [<network> [<password>]]\n",
73 const char* password = NULL; local
75 password = argv[4];
77 status_t status = device.JoinNetwork(argv[3], password);
/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/headers/os/net/
H A DNetworkDevice.h123 const char* password = NULL);
125 const char* password = NULL);
127 const char* password = NULL);
/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/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/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/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/headers/private/netservices2/
H A DHttpRequest.h78 BString password; member in struct:BPrivate::Network::BHttpAuthentication
/haiku/src/apps/login/
H A DLoginApp.cpp153 const char* password = message->GetString("password"); local
155 status = ValidateLogin(login, password);
176 LoginApp::ValidateLogin(const char *login, const char *password) argument
186 if (verify_password(pwd, getspnam(login), password))
/haiku/src/servers/registrar/
H A DAuthenticationManager.cpp128 User(const char* name, const char* password, uid_t uid, gid_t gid, argument
134 fPassword(password),
171 void SetShadowInfo(const char* password, int lastChanged, int min, int max, argument
174 fShadowPassword = password;
198 if (message.FindString("password", &stringValue) == B_OK)
210 if (message.FindString("shadow password", &stringValue) == B_OK) {
276 || (error = message.AddString("password", fPassword.c_str()))
288 if ((error = message.AddString("shadow password",
357 Group(const char* name, const char* password, gid_t gid, argument
362 fPassword(password),
1253 char* password; local
1301 char* password; local
1348 char* password; local
[all...]
/haiku/src/bin/multiuser/
H A Dmultiuser_utils.cpp21 read_password(const char* prompt, char* password, size_t bufferSize, argument
66 if (fgets(password, bufferSize, in) == NULL) {
75 size_t len = strlen(password);
76 if (len > 0 && password[len - 1] == '\n')
77 password[len - 1] = '\0';
94 // check whether we need to check the shadow password
98 // Mmh, we're suppose to check the shadow password, but we don't
106 // If no password is required, we're done.
121 /*! Checks whether the user needs to authenticate with a password, and, if
130 // check whether a password i
[all...]
/haiku/src/preferences/mail/
H A DAutoConfigView.cpp47 fPasswordView = new BTextControl("password", B_TRANSLATE("Password:"),
148 info.password = fPasswordView->Text();
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerPrefs.cpp41 " add user <name> [ <password> ]\n"
43 " password <password>\n"
261 add_user(const char* name, const char* password) argument
275 status_t error = roster.AddUser(name, password);
450 const char* password = next_arg(argc, argv, argi, true); local
452 add_user(name, password);
/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/tests/kits/net/service/
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/private/kernel/platform/efi/protocol/
H A Dconsole-control.h32 uint16_t* password);

Completed in 175 milliseconds

1234