Searched refs:userPassword (Results 1 - 25 of 55) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DAMUserNamePasswordAuthenticator.java45 private String userPassword; field in class:AMUserNamePasswordAuthenticator
56 userPassword = password;
67 return new PasswordAuthentication(userName, userPassword);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DAMUserNamePasswordAuthenticator.java45 private String userPassword; field in class:AMUserNamePasswordAuthenticator
56 userPassword = password;
67 return new PasswordAuthentication(userName, userPassword);
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/multiplepasswords/script/
H A DonCreate-onUpdate-sync.js23 target.userPassword = pw;
/forgerock/openam-v13/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java57 private String userPassword; field in class:DataStore
109 userPassword = (String) sharedState.get(getPwdKey());
110 if (userName == null || userPassword == null) {
118 passwordCallback.setPassword(userPassword.toCharArray());
125 userPassword = password == null ? null : String.valueOf(password);
131 if (userPassword == null || userPassword.length() == 0) {
136 storeUsernamePasswd(userName, userPassword);
193 userPassword = null;
/forgerock/openam/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java57 private String userPassword; field in class:DataStore
109 userPassword = (String) sharedState.get(getPwdKey());
110 if (userName == null || userPassword == null) {
118 passwordCallback.setPassword(userPassword.toCharArray());
125 userPassword = password == null ? null : String.valueOf(password);
131 if (userPassword == null || userPassword.length() == 0) {
136 storeUsernamePasswd(userName, userPassword);
193 userPassword = null;
/forgerock/openam-v13/openam-authentication/openam-auth-nt/src/main/java/com/sun/identity/authentication/modules/nt/
H A DNT.java159 String userPassword = null;
162 userPassword = (String) sharedState.get(getPwdKey());
163 if (userName == null || userPassword == null) {
170 userPassword =
177 if (userPassword == null || userPassword.length() == 0) {
185 storeUsernamePasswd(userName, userPassword);
197 if (!userPassword.equals(new String(userPassword.getBytes("UTF-8"),
226 dos.write("password = " + userPassword);
[all...]
/forgerock/openam/openam-authentication/openam-auth-nt/src/main/java/com/sun/identity/authentication/modules/nt/
H A DNT.java159 String userPassword = null;
162 userPassword = (String) sharedState.get(getPwdKey());
163 if (userName == null || userPassword == null) {
170 userPassword =
177 if (userPassword == null || userPassword.length() == 0) {
185 storeUsernamePasswd(userName, userPassword);
197 if (!userPassword.equals(new String(userPassword.getBytes("UTF-8"),
226 dos.write("password = " + userPassword);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java294 final String[] userPassword = extractUsernamePassword(request);
295 if (userPassword != null && userPassword.length == 2)
297 ctx.userName = userPassword[0];
298 ctx.password = userPassword[1];
475 String[] userPassword = parseUsernamePassword(httpBasicAuthHeader);
476 if (userPassword != null)
478 return userPassword;
576 String userPassword = new String(Base64.decode(base64UserPassword));
577 String[] split = userPassword
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java283 final String[] userPassword = extractUsernamePassword(request);
284 if (userPassword != null && userPassword.length == 2)
286 ctx.userName = userPassword[0];
287 ctx.password = userPassword[1];
463 String[] userPassword = parseUsernamePassword(httpBasicAuthHeader);
464 if (userPassword != null)
466 return userPassword;
564 String userPassword = new String(Base64.decode(base64UserPassword));
565 String[] split = userPassword
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java284 final String[] userPassword = extractUsernamePassword(request);
285 if (userPassword != null && userPassword.length == 2)
287 ctx.userName = userPassword[0];
288 ctx.password = userPassword[1];
464 String[] userPassword = parseUsernamePassword(httpBasicAuthHeader);
465 if (userPassword != null)
467 return userPassword;
565 String userPassword = new String(Base64.decode(base64UserPassword));
566 String[] split = userPassword
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java294 final String[] userPassword = extractUsernamePassword(request);
295 if (userPassword != null && userPassword.length == 2)
297 ctx.userName = userPassword[0];
298 ctx.password = userPassword[1];
475 String[] userPassword = parseUsernamePassword(httpBasicAuthHeader);
476 if (userPassword != null)
478 return userPassword;
576 String userPassword = new String(Base64.decode(base64UserPassword));
577 String[] split = userPassword
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/http/
H A DCollectClientConnectionsFilter.java283 final String[] userPassword = extractUsernamePassword(request);
284 if (userPassword != null && userPassword.length == 2)
286 ctx.userName = userPassword[0];
287 ctx.password = userPassword[1];
463 String[] userPassword = parseUsernamePassword(httpBasicAuthHeader);
464 if (userPassword != null)
466 return userPassword;
564 String userPassword = new String(Base64.decode(base64UserPassword));
565 String[] split = userPassword
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-httpbasic/src/main/java/com/sun/identity/authentication/modules/httpbasic/
H A DHTTPBasic.java76 private String userPassword; field in class:HTTPBasic
186 userPassword = null;
201 userPassword = decode.substring(idx+1);
204 storeUsernamePasswd(userName, userPassword);
216 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/openam/openam-authentication/openam-auth-httpbasic/src/main/java/com/sun/identity/authentication/modules/httpbasic/
H A DHTTPBasic.java76 private String userPassword; field in class:HTTPBasic
186 userPassword = null;
201 userPassword = decode.substring(idx+1);
204 storeUsernamePasswd(userName, userPassword);
216 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/openam-v13/openam-authentication/openam-auth-application/src/main/java/com/sun/identity/authentication/modules/application/
H A DApplication.java211 private boolean doFallbackAuth(String userName, String userPassword) argument
220 if (authenticateToDatastore(userName, userPassword)) {
229 } else if (authenticateToLDAP(userName, userPassword) == ModuleState.SUCCESS) {
310 private ModuleState authenticateToLDAP(String userName, String userPassword) argument
322 ldapUtil.authenticateUser(userName, userPassword);
333 ldapUtil.authenticateUser(userName, userPassword);
361 * @param userPassword User Password
366 String userPassword) throws AuthLoginException {
374 passwordCallback.setPassword(userPassword.toCharArray());
365 authenticateToDatastore(String userName, String userPassword) argument
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/authentication/spi/
H A DWSSReplayPasswd.java92 Set tmp = amId.getAttribute("userPassword");
94 String userPassword = (String)tmp.iterator().next();
95 ssoToken.setProperty("HashedUserPassword", userPassword);
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/authentication/spi/
H A DWSSReplayPasswd.java92 Set tmp = amId.getAttribute("userPassword");
94 String userPassword = (String)tmp.iterator().next();
95 ssoToken.setProperty("HashedUserPassword", userPassword);
/forgerock/openam-v13/openam-radius/openam-radius-server/src/test/java/org/forgerock/openam/radius/server/spi/handlers/
H A DOpenAMAuthHandlerTest.java132 UserPasswordAttribute userPassword = mock(UserPasswordAttribute.class);
133 when(userPassword.extractPassword(isA(Authenticator.class), isA(String.class))).thenReturn("password");
134 when(request.getAttribute(UserPasswordAttribute.class)).thenReturn(userPassword);
137 String password = userPassword.extractPassword(reqCtx.getRequestAuthenticator(), reqCtx.getClientSecret());
/forgerock/openam/openam-radius/openam-radius-server/src/test/java/org/forgerock/openam/radius/server/spi/handlers/
H A DOpenAMAuthHandlerTest.java132 UserPasswordAttribute userPassword = mock(UserPasswordAttribute.class);
133 when(userPassword.extractPassword(isA(Authenticator.class), isA(String.class))).thenReturn("password");
134 when(request.getAttribute(UserPasswordAttribute.class)).thenReturn(userPassword);
137 String password = userPassword.extractPassword(reqCtx.getRequestAuthenticator(), reqCtx.getClientSecret());
/forgerock/openam/openam-authentication/openam-auth-application/src/main/java/com/sun/identity/authentication/modules/application/
H A DApplication.java180 private boolean doFallbackAuth(String userName, String userPassword) argument
187 if (authenticateToDatastore(userName, userPassword)) {
202 * @param userPassword User Password
206 private boolean authenticateToDatastore(String userName, String userPassword) throws AuthLoginException { argument
213 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1642 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1731 state.passwordMatches(ByteString.valueOf(userPassword));
1806 state.passwordMatches(ByteString.valueOf(userPassword));
1903 state.passwordMatches(ByteString.valueOf(userPassword));
1997 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2006 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2024 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2050 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2119 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2149 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1607 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1696 state.passwordMatches(ByteString.valueOf(userPassword));
1771 state.passwordMatches(ByteString.valueOf(userPassword));
1868 state.passwordMatches(ByteString.valueOf(userPassword));
1962 new SimpleBindEvent(ceBind3, adDNString, userPassword,
1971 new SimpleBindEvent(ceBind3, adDNString, userPassword,
1989 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2015 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2084 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2114 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1648 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1737 state.passwordMatches(ByteString.valueOf(userPassword));
1812 state.passwordMatches(ByteString.valueOf(userPassword));
1909 state.passwordMatches(ByteString.valueOf(userPassword));
2003 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2012 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2030 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2056 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2125 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2155 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1607 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1696 state.passwordMatches(ByteString.valueOf(userPassword));
1771 state.passwordMatches(ByteString.valueOf(userPassword));
1868 state.passwordMatches(ByteString.valueOf(userPassword));
1962 new SimpleBindEvent(ceBind3, adDNString, userPassword,
1971 new SimpleBindEvent(ceBind3, adDNString, userPassword,
1989 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2015 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2084 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2114 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1642 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1731 state.passwordMatches(ByteString.valueOf(userPassword));
1806 state.passwordMatches(ByteString.valueOf(userPassword));
1903 state.passwordMatches(ByteString.valueOf(userPassword));
1997 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2006 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2024 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2050 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2119 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2149 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]

Completed in 95 milliseconds

123