Searched refs:password (Results 1 - 25 of 51) sorted by relevance

123

/vbox/src/VBox/Devices/PC/ipxe/src/hci/tui/
H A Dlogin_ui.c52 char password[64]; local
62 fetch_string_setting ( NULL, &password_setting, password,
63 sizeof ( password ) );
73 init_editbox ( &password_box, password, sizeof ( password ), NULL,
132 if ( ( rc = store_setting ( NULL, &password_setting, password,
133 strlen ( password ) ) ) != 0 )
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Dimgmgmt.c48 const char *password; local
58 /* Redact password portion of URI, if necessary */
59 password = uri->password;
60 if ( password )
61 uri->password = "***";
64 uri->password = password;
/vbox/src/VBox/HostServices/auth/simple/
H A DVBoxAuthSimple.cpp100 Bstr password; local
108 machine->GetExtraData(key.raw(), password.asOutParam());
111 virtualBox->GetExtraData(key.raw(), password.asOutParam());
113 if (!password.isEmpty())
121 if (password == pszDigest)
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/
H A DUIWizardExportAppPageBasic3.h56 /* Stuff for 'password' field: */
57 QString password() const;
95 Q_PROPERTY(QString password READ password WRITE setPassword);
H A DUIWizardExportAppPageExpert.h43 Q_PROPERTY(QString password READ password WRITE setPassword);
/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A Dminiunz.c196 printf("Usage : miniunz [-e] [-x] [-v] [-l] [-o] [-p password] file.zip [file_to_extr.] [-d extractdir]\n\n" \
203 " -p extract crypted file using password\n\n");
312 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
316 const char* password;
370 err = unzOpenCurrentFilePassword(uf,password);
475 int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
479 const char* password;
494 password) != UNZ_OK)
511 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
516 const char* password;
540 const char *password=NULL; local
[all...]
H A Dzip.h230 const char* password,
247 const char* password,
255 password : crypting password (NULL for no crypting)
273 const char* password,
294 const char* password,
H A Dminizip.c174 printf("Usage : minizip [-o] [-a] [-0 to -9] [-p password] [-j] file.zip [files_to_add]\n\n" \
260 const char* password=NULL; local
291 password=argv[i+1];
419 if ((password != NULL) && (err==ZIP_OK))
457 password,crcFile, zip64);
H A Dunzip.h338 const char* password));
341 password is a crypting password
362 const char* password));
/vbox/src/VBox/Additions/linux/installer/
H A Dautorun.sh86 # Use su and prompt for password
108 # pfexec exists but user has no pfexec privileges, switch to using su and prompting password
133 /usr/bin/gnome-terminal --title "Installing VirtualBox Additions: Root password required." --command "/bin/sh -c '$subin - root -c \"$pkgaddbin -G -d $installfile -n -a /tmp/vbox.autoinstall SUNWvboxguest\"; /bin/echo press ENTER to close this window; /bin/read; /bin/rm -f /tmp/vbox.autoinstall'"
140 /usr/X11/bin/xterm -title "Installing VirtualBox Additions: Root password required." -e "$subin - root -c \"$pkgaddbin -G -d $installfile -n -a /tmp/vbox.autoinstall SUNWvboxguest\"; /bin/echo press ENTER to close this window; /bin/read; /bin/rm -f /tmp/vbox.autoinstall"
/vbox/src/VBox/ValidationKit/testboxscript/linux/
H A Dsetup-routines.sh87 useradd -m -U -p password -s /bin/bash ${ADD_GROUPS} "${TESTBOXSCRIPT_USER}"
/vbox/src/VBox/RDP/client-1.8.3/
H A Dcssp.c264 cssp_encode_tspasswordcreds(char *username, char *password, char *domain) argument
300 // password [2]
301 s_realloc(&tmp, 4 + strlen(password) * sizeof(uint16));
303 rdp_out_unistr(&tmp, password, strlen(password) * sizeof(uint16));
424 cssp_encode_tssmartcardcreds(char *username, char *password, char *domain) argument
431 s_realloc(&tmp, strlen(password) * sizeof(uint16));
433 rdp_out_unistr(&tmp, password, strlen(password) * sizeof(uint16));
497 cssp_encode_tscredentials(char *username, char *password, cha argument
747 cssp_connect(char *server, char *user, char *domain, char *password, STREAM s) argument
[all...]
H A Diso.c212 iso_connect(char *server, char *username, char *domain, char *password, argument
334 if (!cssp_connect(server, username, domain, password, s))
H A Dmcs.c320 mcs_connect_start(char *server, char *username, char *domain, char *password, argument
323 return iso_connect(server, username, domain, password, reconnect, selected_protocol);
H A Dproto.h100 RD_BOOL iso_connect(char *server, char *username, char *domain, char *password, RD_BOOL reconnect,
105 RD_BOOL cssp_connect(char *server, char *user, char *domain, char *password, STREAM s);
113 RD_BOOL mcs_connect_start(char *server, char *username, char *domain, char *password,
181 RD_BOOL rdp_connect(char *server, uint32 flags, char *domain, char *password, char *command,
221 RD_BOOL sec_connect(char *server, char *username, char *domain, char *password, RD_BOOL reconnect);
H A Drdp.c372 char *password, char *program, char *directory)
378 int len_password = 2 * strlen(password);
409 rdp_out_unistr(s, password, len_password);
489 rdp_out_unistr(s, password, len_password);
1649 /* the information in this blob is either a password or a cookie that
1753 /* If we got a data PDU, we don't need to keep the password in memory
1772 rdp_connect(char *server, uint32 flags, char *domain, char *password, argument
1778 if (!sec_connect(server, g_username, domain, password, reconnect))
1781 rdp_send_logon_info(flags, domain, g_username, password, command, directory);
371 rdp_send_logon_info(uint32 flags, char *domain, char *user, char *password, char *program, char *directory) argument
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Duri.c49 if ( uri->password )
50 DBG ( " password \"%s\"", uri->password );
161 /* Split authority into user[:password] and host[:port] portions */
163 /* Has user[:password] */
168 /* Has password */
170 uri->password = tmp;
173 /* No user:password */
225 /* user */ 0, /* password */ ':',
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dpap.c73 { "hide-password", o_bool, &hide_password,
75 { "show-password", o_bool, &hide_password,
76 "Show password string in debug log messages", 0 },
160 upap_authwithpeer(int unit, char *user, char *password) argument
164 UPAPDEBUG(LOG_INFO, ("upap_authwithpeer: %d user=%s password=%s s=%d\n",
165 unit, user, password, u->us_clientstate));
167 /* Save the username and password we're given */
170 u->us_passwd = password;
171 u->us_passwdlen = (int)strlen(password);
440 * Check the username and password give
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Duri.h43 * scheme = "ftp", user = "joe", password = "secret",
57 const char *password; member in struct:uri
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dftp.c144 * Retrieve FTP password
147 * @ret password FTP password
151 return ftp->uri->password ? ftp->uri->password : ftp_default_password;
238 * repsonse to a "USER" command, a password prompt (3xx), is a
H A Dhttpcore.c641 const char *password = local
642 ( http->uri->password ? http->uri->password : "" );
644 strlen ( password ) ) : 0 );
678 /* Make "user:password" string from decoded fields */
681 user, password );
683 /* Base64-encode the "user:password" string */
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dpap.c116 * Set the default login name and password for the pap sessions
122 /* Save the username and password we're given */
135 void upap_authwithpeer(int unit, char *user, char *password) argument
139 UPAPDEBUG((LOG_INFO, "upap_authwithpeer: %d user=%s password=%s s=%d\n",
140 unit, user, password, u->us_clientstate));
142 upap_setloginpasswd(unit, user, password);
424 * Check the username and password given.
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIAddDiskEncryptionPasswordDialog.cpp57 * the embedded password editor for the UIEncryptionDataTable. */
62 /** Holds the current password of the editor. */
63 Q_PROPERTY(QString password READ password WRITE setPassword USER true);
92 /** Property: Returns the current password of the editor. */
93 QString password() const { return QLineEdit::text(); } function in class:UIPasswordEditor
111 /** Returns the shallow copy of the encryption password map instance. */
144 /** Holds the encryption password map instance. */
146 /** Holds the encryption password status map instance. */
152 * disk encryption passwords for particular password id
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dhttprequest.idl113 [in] BSTR password,
/vbox/src/VBox/Main/glue/
H A Dvboxapi.py852 self.password = dParams.get("password", "")
856 self.password = ""
869 return self.connect(self.url, self.user, self.password)
922 self.password = passwd
924 self.vbox = self.wsmgr.logon(self.user, self.password)

Completed in 125 milliseconds

123