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

1234567891011>>

/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/token/model/
H A DRestUsernameToken.java24 * Class representing username and password state for rest-sts token transformations initiated by a UsernameToken. For
32 private final byte[] password; field in class:RestUsernameToken
34 public RestUsernameToken(byte[] username, byte[] password) { argument
36 this.password = password;
38 Reject.ifNull(password, "Password cannot be null!");
46 return password;
59 return Arrays.equals(username, that.username) && Arrays.equals(password, that.password);
66 result = 31 * result + Arrays.hashCode(password);
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/token/model/
H A DRestUsernameToken.java24 * Class representing username and password state for rest-sts token transformations initiated by a UsernameToken. For
32 private final byte[] password; field in class:RestUsernameToken
34 public RestUsernameToken(byte[] username, byte[] password) { argument
36 this.password = password;
38 Reject.ifNull(password, "Password cannot be null!");
46 return password;
59 return Arrays.equals(username, that.username) && Arrays.equals(password, that.password);
66 result = 31 * result + Arrays.hashCode(password);
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/protocol/
H A DGenericTransform.java53 * Transforms password.
54 * @param password original password
55 * @return transformed password
57 public String transform(String password) argument
59 return password;
H A DLowercaseTransform.java52 * Transforms password.
53 * @param password original password
54 * @return transformed password
56 public String transform(String password) argument
62 if (password == null) {
66 return password.toLowerCase();
H A DUppercaseTransform.java53 * Transforms password.
54 * @param password original password
55 * @return transformed password
57 public String transform(String password) argument
63 if (password == null) {
67 return password.toUpperCase();
/forgerock/openidm-v4/openidm-crypto/src/main/java/org/forgerock/openidm/crypto/impl/
H A DUpdatableKeyStoreSelector.java43 private char[] password; field in class:UpdatableKeyStoreSelector
49 * @param password the password to use to decrypt selected keys.
51 public UpdatableKeyStoreSelector(KeyStore keyStore, String password) { argument
53 this.password = password.toCharArray();
59 return keyStore.getKey(key, password);
66 * Updates the KeyStore and password
69 * @param password the new password
71 update(KeyStore keyStore, String password) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/authnsvc/protocol/
H A DGenericTransform.java53 * Transforms password.
54 * @param password original password
55 * @return transformed password
57 public String transform(String password) argument
59 return password;
H A DLowercaseTransform.java52 * Transforms password.
53 * @param password original password
54 * @return transformed password
56 public String transform(String password) argument
62 if (password == null) {
66 return password.toLowerCase();
H A DUppercaseTransform.java53 * Transforms password.
54 * @param password original password
55 * @return transformed password
57 public String transform(String password) argument
63 if (password == null) {
67 return password.toUpperCase();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetSuccessModel.java29 package com.sun.identity.password.ui.model;
34 * required by password reset success message.
38 * Returns title string for password reset.
40 * @return title string for password reset.
H A DPWResetInvalidURLModel.java30 package com.sun.identity.password.ui.model;
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/services/util/
H A DConfigurableKey.java32 * The interface class provides a method to choose password-based key for crypto
38 * Sets password-based key to use
40 public void setPassword(String password) throws Exception; argument
/forgerock/openam/openam-shared/src/main/java/com/iplanet/services/util/
H A DConfigurableKey.java32 * The interface class provides a method to choose password-based key for crypto
38 * Sets password-based key to use
40 public void setPassword(String password) throws Exception; argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/password/ui/model/
H A DPWResetSuccessModel.java29 package com.sun.identity.password.ui.model;
34 * required by password reset success message.
38 * Returns title string for password reset.
40 * @return title string for password reset.
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/password/plugins/
H A DNotifyPassword.java29 package com.sun.identity.password.plugins;
32 import com.sun.identity.password.ui.model.PWResetException;
37 * that are required to notify a user when a password is changed.
41 * Notifies user when password is changed.
44 * @param password new password.
46 * @throws PWResetException if password cannot be notified.
48 void notifyPassword(AMIdentity user, String password, Locale locale) argument
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/helpers/
H A DADAMHelper.java27 * Encloses the password with double quotes first, then returns the UTF-16LE bytes representing that value.
29 * @param password The password in string format.
30 * @return The encoded password, or null if encoding is not applicable.
33 public byte[] encodePassword(String password) { argument
34 return password == null ? null : ("\"" + password + "\"").getBytes(Charset.forName("UTF-16LE"));
/forgerock/openam/openam-core/src/main/java/com/sun/identity/password/plugins/
H A DNotifyPassword.java29 package com.sun.identity.password.plugins;
32 import com.sun.identity.password.ui.model.PWResetException;
37 * that are required to notify a user when a password is changed.
41 * Notifies user when password is changed.
44 * @param password new password.
46 * @throws PWResetException if password cannot be notified.
48 void notifyPassword(AMIdentity user, String password, Locale locale) argument
/forgerock/openam/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/helpers/
H A DADAMHelper.java27 * Encloses the password with double quotes first, then returns the UTF-16LE bytes representing that value.
29 * @param password The password in string format.
30 * @return The encoded password, or null if encoding is not applicable.
33 public byte[] encodePassword(String password) { argument
34 return password == null ? null : ("\"" + password + "\"").getBytes(Charset.forName("UTF-16LE"));
/forgerock/openam-v13/openam-server-only/src/main/resources/
H A Damclresource.conf39 dbpassword password
47 storepassword password
48 dbsystempassword password
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/security/keystore/
H A DAMPassword.java35 * Stores a password. <code>clear</code> should be
36 * called when the password is no longer needed so that the sensitive
54 * @param pw A char[] containing the password. This array will be
63 password = new char[length];
64 System.arraycopy(pw, 0, password, 0, length);
68 * Clones the password. The resulting clone will be completely independent
75 dolly.password = (char[]) password.clone();
81 * Returns the char array underlying this password. It must not be
83 * @return password i
[all...]
/forgerock/openam/openam-server-only/src/main/resources/
H A Damclresource.conf39 dbpassword password
47 storepassword password
48 dbsystempassword password
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/security/keystore/
H A DAMPassword.java35 * Stores a password. <code>clear</code> should be
36 * called when the password is no longer needed so that the sensitive
54 * @param pw A char[] containing the password. This array will be
63 password = new char[length];
64 System.arraycopy(pw, 0, password, 0, length);
68 * Clones the password. The resulting clone will be completely independent
75 dolly.password = (char[]) password.clone();
81 * Returns the char array underlying this password. It must not be
83 * @return password i
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMUserPasswordValidation.java34 * This class provides a <code>userID</code> and password validation plugin
39 * modules that validate the <code>userID</code> and/or password for the user.
41 * <code>userID</code> or password value is being added/modified using
48 * <code>iplanet-am-admin-console-user-password-validation-class</code> of
56 * <code>userID</code> or password supplied by the user. The Exception
77 * if an error occurs in supplying password. The operation
93 * if an error occurs in supplying password. The operation
105 * @param password
106 * the password value
108 * if an error occurs in supplying password
112 validatePassword(String password) argument
128 validatePassword(String password, Map envParams) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/
H A DAMUserPasswordValidation.java34 * This class provides a <code>userID</code> and password validation plugin
39 * modules that validate the <code>userID</code> and/or password for the user.
41 * <code>userID</code> or password value is being added/modified using
48 * <code>iplanet-am-admin-console-user-password-validation-class</code> of
56 * <code>userID</code> or password supplied by the user. The Exception
77 * if an error occurs in supplying password. The operation
93 * if an error occurs in supplying password. The operation
105 * @param password
106 * the password value
108 * if an error occurs in supplying password
112 validatePassword(String password) argument
128 validatePassword(String password, Map envParams) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/spi/
H A DITokenProvider.java38 * Return <code>Object</code> with given user name and password
40 * @param password User password
41 * @return <code>Object</code> with given user name and password
43 public Object createToken(String name, String password); argument

Completed in 2073 milliseconds

1234567891011>>