Searched refs:username (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/auth/
H A DBasicUserPrincipal.java51 private final String username; field in class:BasicUserPrincipal
53 public BasicUserPrincipal(final String username) { argument
55 if (username == null) {
58 this.username = username;
62 return this.username;
68 hash = LangUtils.hashCode(hash, this.username);
78 if (LangUtils.equals(this.username, that.username)) {
89 buffer.append(this.username);
[all...]
H A DNTUserPrincipal.java51 private final String username; field in class:NTUserPrincipal
57 final String username) {
59 if (username == null) {
62 this.username = username;
72 buffer.append(this.username);
75 this.ntname = this.username;
88 return this.username;
94 hash = LangUtils.hashCode(hash, this.username);
105 if (LangUtils.equals(this.username, tha
55 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/toybox/lib/
H A Dpending.h6 int update_password(char *filename, char* username, char* encrypted);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dmschapv2.c15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len) argument
26 if (username[i] == '\\') {
28 return username + i + 1;
32 return username;
44 const u8 *username; local
51 username = mschapv2_remove_domain(identity, &username_len);
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len);
67 username, username_le
[all...]
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/wpa_supplicant_8/src/eap_peer/
H A Dmschapv2.c15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len) argument
26 if (username[i] == '\\') {
28 return username + i + 1;
32 return username;
44 const u8 *username; local
51 username = mschapv2_remove_domain(identity, &username_len);
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len);
67 username, username_le
[all...]
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dmschapv2.c15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len) argument
26 if (username[i] == '\\') {
28 return username + i + 1;
32 return username;
44 const u8 *username; local
51 username = mschapv2_remove_domain(identity, &username_len);
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len);
67 username, username_le
[all...]
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/user/
H A DUserAccount.groovy19 * Represents a single user account on the server, including the username, password and home
34 String username
49 * @throws AssertionError - if the username property is null
52 assert username
60 "UserAccount[username=$username; password=$password; homeDirectory=$homeDirectory; " +
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dgrantip.py15 ``ip_map`` is a map of {ip_mask: (username, roles)}. Either
16 ``username`` or ``roles`` may be None. Roles may also be prefixed
18 revoked. ``'__remove__'`` for a username will remove the username.
22 ``'__remove__'`` will always clobber the username.
37 def _convert_user_role(self, username, roles):
40 return (username, roles)
46 for range, (username, roles) in self.ip_map:
50 if username == '__remove__':
52 elif username
[all...]
H A Dform.py8 This is a very simple HTML form login screen that asks for the username
19 >>> def authfunc(environ, username, password):
20 ... return username == password
36 <dd><input type="text" name="username"></dd>
53 ``username`` and ``password`` combination are given to a
69 ``environ``, ``username`` and ``password`` for its first
80 have two input names: ``username`` and ``password``.
97 username = environ.get('REMOTE_USER','')
98 if username:
103 username
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java39 String username = command.getRequiredParameter(0);
40 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
43 if (!validateUserAccount(username, session)) {
53 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/command/
H A DUserCommandHandler.java31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0);
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/user/
H A DUserAccountTest.groovy36 userAccount.username = USERNAME
49 userAccount.username = ''
55 customUserAccount.username = USERNAME
63 userAccount.username = USERNAME

Completed in 555 milliseconds

1234567891011>>