Searched refs:password (Results 26 - 50 of 79) sorted by relevance

1234

/haiku/src/add-ons/kernel/network/ppp/pap/
H A DProtocol.cpp353 const char *username = Interface().Username(), *password = Interface().Password(); local
355 if (*userLength == strlen(username) && *passwordLength == strlen(password)
357 && !strncmp(peerPassword, password, *passwordLength)) {
459 const char *username = Interface().Username(), *password = Interface().Password(); local
460 uint16 packcketLenth = 6 + strlen(username) + strlen(password);
461 // 6 : lcp header 4 byte + username length 1 byte + password length 1 byte
469 data[1 + data[0]] = strlen(password);
470 memcpy(data + 2 + data[0], password, strlen(password));
/haiku/src/system/libroot/posix/
H A Dshadow.cpp167 const char* password; local
177 || (error = reply.FindString("shadow password", &password)) != B_OK
188 error = BPrivate::copy_shadow_pwd_to_buffer(name, password, lastChanged,
225 char* password; local
234 status_t status = BPrivate::parse_shadow_pwd_line(line, name, password,
239 status = BPrivate::copy_shadow_pwd_to_buffer(name, password, lastChanged,
H A Dgrp.cpp57 const char* password; local
61 || (error = reply.FindString("password", &password)) != B_OK) {
73 error = BPrivate::copy_group_to_buffer(name, password, gid, members,
H A Dpwd.cpp57 const char* password; local
65 || (error = reply.FindString("password", &password)) != B_OK
72 error = BPrivate::copy_passwd_to_buffer(name, password, uid, gid, home,
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DSecurityContext.h29 status_t Init(const char* name, const char* password);
86 status_t AddUser(const char* name, const char* password,
93 const char* password, User** user);
H A DSecurityContext.cpp73 // password
75 error = archive->AddString("password", fPassword.GetString());
90 User::Init(const char* name, const char* password) argument
96 if (password && !fPassword.SetTo(password))
119 // password
120 const char* password; local
121 if (archive->FindString("password", &password) == B_OK)
122 fPassword.SetTo(password);
603 AddUser(const char* name, const char* password, User** _user) argument
710 AuthenticateUser(const char* name, const char* password, User** _user) argument
[all...]
/haiku/headers/os/app/
H A DKeyStore.h93 status_t GeneratePassword(BPasswordKey& password,
95 float PasswordStrength(const char* password);
/haiku/headers/private/screen_saver/
H A DScreenSaverSettings.h85 void SetPassword(const char* password) argument
86 { fPassword = password; }
87 // Cannot set network password from here.
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.h22 status_t AddUser(const char* user, const char* password);
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);
H A DNetFSServerRoster.cpp96 NetFSServerRoster::AddUser(const char* user, const char* password) argument
105 || (password && request.AddString("password", password) != B_OK)) {
/haiku/src/apps/webpositive/
H A DCredentialsStorage.h24 const BString& password);
H A DCredentialsStorage.cpp30 Credentials::Credentials(const BString& username, const BString& password) argument
33 fPassword(password)
49 archive->FindString("password", &fPassword);
65 status = archive->AddString("password", fPassword);
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/headers/
H A DPPPInterface.h35 bool SetPassword(const char *password) const;
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp299 const char* password = get_passwd(&fSettingsMessage, "cpasswd"); local
300 status = Login(fSettingsMessage.FindString("username"), password);
301 delete[] password;
508 SMTPProtocol::Login(const char *_login, const char *password) argument
518 int32 passlen = ::strlen(password);
565 << password;
612 (const unsigned char *)password, (int)passlen);
655 // Send password as base64
657 encodedsize = ::encode_base64(login64, (char *)password, passlen, true /* headerMode */);
670 // authenticateID + \0 + username + \0 + password
[all...]
/haiku/src/apps/expander/
H A DPasswordAlert.cpp129 PasswordAlert::Go(BString& password) argument
168 password = fTextControl->Text();
/haiku/src/preferences/mail/
H A DAutoConfigWindow.cpp190 set_passwd(&inboundArchive, "cpasswd", fAccountInfo.password);
200 set_passwd(&outboundArchive, "cpasswd", fAccountInfo.password);
H A DAutoConfigView.h44 BString password; member in struct:account_info
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.h61 const char* username, const char* password,
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DPPPInterface.cpp188 //! Sets the password used for authentication.
190 PPPInterface::SetPassword(const char *password) const
193 if (InitCheck() != B_OK || !password)
196 return Control(PPPC_SET_PASSWORD, const_cast<char*>(password), strlen(password))
/haiku/src/kits/mail/
H A DProtocolConfigView.cpp195 char* password = get_passwd(&settings, "cpasswd"); local
196 if (password != NULL) {
197 fPasswordControl->SetText(password);
198 delete[] password;
200 fPasswordControl->SetText(settings.FindString("password"));
299 settings.RemoveName("password");
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.h50 status_t Login(const char* uid, const char* password,
H A DPOP3.cpp103 char* password = get_passwd(&fSettings, "cpasswd"); local
105 error = Login(fSettings.FindString("username"), password,
107 delete[] password;
377 POP3Protocol::Login(const char* uid, const char* password, int method) argument
392 timestamp += password;
428 ReportProgress(0, 0, B_TRANSLATE("Sending password" B_UTF8_ELLIPSIS));
430 cmd += password;
/haiku/src/kits/screensaver/
H A DScreenSaverSettings.cpp163 const char* password = IsNetworkPassword() ? "" : fPassword.String(); local
164 if (fSettings.ReplaceString("lockpassword", password) != B_OK)
165 fSettings.AddString("lockpassword", 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...]

Completed in 152 milliseconds

1234