Searched refs:password (Results 1 - 25 of 79) sorted by path

1234

/haiku/headers/os/app/
H A DKey.h96 BPasswordKey(const char* password,
104 status_t SetTo(const char* password,
109 status_t SetPassword(const char* password);
H A DKeyStore.h93 status_t GeneratePassword(BPasswordKey& password,
95 float PasswordStrength(const char* password);
/haiku/headers/os/support/
H A DUrl.h29 BUrl& SetPassword(const BString& password);
/haiku/headers/private/libroot/
H A Duser_group.h107 status_t copy_passwd_to_buffer(const char* name, const char* password, uid_t uid,
113 status_t parse_passwd_line(char* line, char*& name, char*& password, uid_t& uid,
119 status_t copy_group_to_buffer(const char* name, const char* password, gid_t gid,
125 status_t parse_group_line(char* line, char*& name, char*& password, gid_t& gid,
129 // shadow password
131 status_t copy_shadow_pwd_to_buffer(const char* name, const char* password,
137 status_t parse_shadow_pwd_line(char* line, char*& name, char*& password,
/haiku/headers/private/mail/
H A Dcrypt.h13 bool set_passwd(BMessage *msg,const char *name,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/authentication_server/
H A DAuthenticationServer.cpp26 Authentication(const char* user, const char* password) argument
28 fPassword(password)
32 status_t SetTo(const char* user, const char* password) argument
34 if (fUser.SetTo(user) && fPassword.SetTo(password))
135 status_t SetDefaultAuthentication(const char* user, const char* password) argument
137 return fDefaultAuthentication.SetTo(user, password);
146 const char* password)
152 return authentication->SetTo(user, password);
157 status_t error = authentication->SetTo(user, password);
206 char password[B_OS_NAME_LENGT local
145 SetAuthentication(const char* share, const char* user, const char* password) argument
373 _GetAuthentication(const char* context, const char* server, const char* share, HashString* user, HashString* password) argument
401 _AddAuthentication(const char* context, const char* server, const char* share, const char* user, const char* password, bool makeDefault) argument
433 _SendRequestReply(port_id port, int32 token, status_t error, bool cancelled, const char* user, const char* password) argument
[all...]
H A DAuthenticationServer.h23 HashString* user, HashString* password);
26 const char* user, const char* password,
30 const char* user, const char* password);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp3057 // get the user and password from the authentication server
3059 char password[kPasswordBufferSize]; local
3064 &cancelled, user, sizeof(user), password, sizeof(password));
3072 request.password.SetTo(password);
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h335 visitor->Visit(this, password);
341 StringData password; // authentication; otherwise NULL means anonymous member in struct:MountRequest
/haiku/src/add-ons/kernel/file_systems/netfs/netfs_server_prefs/
H A DNetFSServerRoster.cpp96 NetFSServerRoster::AddUser(const char* user, const char* password) argument
105 || (password && request.AddString("password", password) != B_OK)) {
H A DNetFSServerRoster.h22 status_t AddUser(const char* user, const char* password);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
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...]
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);
/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/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/add-ons/kernel/network/ppp/shared/libppp/headers/
H A DPPPInterface.h35 bool SetPassword(const char *password) const;
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DSettings.cpp67 BString password; local
70 password = passwd;
72 return password;
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.cpp158 LoginCommand::LoginCommand(const char* user, const char* password) argument
161 fPassword(password)
H A DCommands.h81 const char* password);
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 DProtocol.h61 const char* username, const char* password,
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
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;
H A DPOP3.h50 status_t Login(const char* uid, const char* password,
/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...]

Completed in 170 milliseconds

1234