HomeSort by relevance Sort by last modified time
    Searched defs:username (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/wpa_supplicant_8/src/eap_peer/
mschapv2.c 15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len)
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);
52 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: Username",
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len)
    [all...]
  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 51 private final String username; field in class:BasicUserPrincipal
53 public BasicUserPrincipal(final String username) {
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...]
NTUserPrincipal.java 51 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, that.username
    [all...]
NTCredentials.java 63 * The constructor with the fully qualified username and password combined
66 * @param usernamePassword the domain/username:password formed string
71 throw new IllegalArgumentException("Username:password string may not be null");
73 String username; local
76 username = usernamePassword.substring(0, atColon);
79 username = usernamePassword;
82 int atSlash = username.indexOf('/');
85 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
86 username.substring(atSlash + 1));
90 username.substring(atSlash + 1))
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AcctCommandHandler.java 38 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
41 sendReply(session, ReplyCodes.ACCT_OK, "acct", list(username));
PassCommandHandler.java 41 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
43 if (validateUserAccount(username, session)) {
44 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
UserCommandHandler.java 31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0); local
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
  /external/chromium-trace/trace-viewer/third_party/webapp2/tests/
extras_appengine_auth_models_test.py 14 username = model.StringProperty(required=True) variable in class:User
146 def create_user(username):
148 unique_username = 'User.username:%s' % username
150 # Create the unique username, auth_id and email.
154 user = User(username=username)
158 raise UniqueConstraintViolation('Username %s already '
159 'exists' % username)
168 def create_user(username, auth_id, email)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
BasicAuthenticator.java 87 String username = credentials.substring(0,i); local
90 UserIdentity user = login (username, password, request);
DigestAuthenticator.java 197 if ("username".equalsIgnoreCase(name))
198 digest.username = tok;
222 //UserIdentity user = _loginService.login(digest.username,digest);
223 UserIdentity user = login(digest.username, digest, req);
324 String username = ""; field in class:DigestAuthenticator.Digest
361 md.update(username.getBytes(StringUtil.__ISO_8859_1));
409 return username + "," + response;
ClientCertAuthenticator.java 122 final String username = principal == null ? "clientcert" : principal.getName(); local
126 UserIdentity user = login(username, credential, req);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTestData.java 39 String username = ""; field in class:WebPlatformUrlTestData
57 username = value;
HttpUrlTest.java 177 @Test public void username() throws Exception { method in class:HttpUrlTest
190 assertEquals(HttpUrl.parse("http://username:password@host/path"),
191 HttpUrl.parse("http://username:password@host/path"));
192 assertEquals(HttpUrl.parse("http://username@host/path"),
193 HttpUrl.parse("http://username:@host/path"));
  /external/openssh/
loginrec.h 69 char username[LINFO_NAMESIZE]; /* login username */ member in struct:logininfo
89 struct logininfo *login_alloc_entry(pid_t pid, const char *username,
94 int login_init_entry(struct logininfo *li, pid_t pid, const char *username,
logintest.c 77 li->username, li->hostname, li->exit,
91 char username[32]; local
101 strlcpy(username, pw->pw_name, sizeof(username));
108 li1 = login_alloc_entry((int)getpid(), username, NULL, ttyname(0));
auth2-pubkey.c 395 * their username in the certificate principals list.
470 * against the username.
535 char *username, errmsg[512]; local
546 username = percent_expand(options.authorized_keys_command_user,
548 pw = getpwnam(username);
551 username, strerror(errno));
552 free(username);
555 free(username);
  /external/toybox/toys/other/
login.c 15 usage: login [-p] [-h host] [[-f] username]
147 char username[33], *pass = NULL, **ss; local
152 if (f_flag && toys.optc != 1) error_exit("-f requires username");
167 username[sizeof(username)-1] = 0;
168 if (*toys.optargs) xstrncpy(username, *toys.optargs, sizeof(username));
170 read_user(username, sizeof(username));
171 if (!*username) continue
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HttpAuthenticationDialog.java 91 String username = getUsername(); local
97 if (username != null) {
98 mUsernameView.setText(username);
157 void onOk(String host, String realm, String username, String password);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /external/jetty/src/java/org/eclipse/jetty/security/
PropertyUserStore.java 53 * username: password [,rolename ...]
89 public UserIdentity getUserIdentity(String userName)
91 return _knownUserIdentities.get(userName);
141 String username = ((String)entry.getKey()).trim(); local
151 if (username != null && username.length() > 0 && credentials != null && credentials.length() > 0)
158 known.add(username);
161 Principal userPrincipal = new KnownUser(username,credential);
176 _knownUserIdentities.put(username,_identityService.newUserIdentity(subject,userPrincipal,roleArray));
177 notifyUpdate(username,credential,roleArray)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 25 * Represents a single user account on the server, including the username, password, home
29 * The <code>username</code> and <code>homeDirectory</code> property must be non-null
63 private String username; field in class:UserAccount
83 * @param username - the user name
87 public UserAccount(String username, String password, String homeDirectory) {
88 setUsername(username);
94 return username;
97 public void setUsername(String username) {
98 this.username = username;
    [all...]
  /external/ppp/pppd/plugins/
winbind.c 241 unsigned int run_ntlm_auth(const char *username,
325 if (username) {
326 char *b64_username = base64_encode(username);
327 fprintf(pipe_in, "Username:: %s\n", b64_username);
339 fprintf(pipe_in, "Full-Username:: %s\n", b64_full_username);
520 char *username; local
528 /* remove domain from "domain\username" */
529 if ((username = strrchr(user, '\\')) != NULL)
530 ++username;
532 username = user
    [all...]
  /external/selinux/libselinux/src/
seusers.c 178 char *username = NULL; local
195 rc = process_seusers(buffer, &username, &seuser, &level,
205 if (!strcmp(username, name))
208 if (username[0] == '%' &&
210 check_group(&username[1], name, gid)) {
215 !strcmp(username, "__default__")) {
223 free(username);
224 username = NULL;
232 free(username);
260 /* Fall back to the Linux username and no level. *
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
VpnProfile.java 53 public String username = ""; // 3 field in class:VpnProfile
78 username = in.readString();
99 out.writeString(username);
133 profile.username = values[3];
146 profile.saveLogin = !profile.username.isEmpty() || !profile.password.isEmpty();
158 builder.append('\0').append(saveLogin ? username : "");

Completed in 485 milliseconds

1 2 3 4 5 6