Searched refs:password (Results 101 - 123 of 123) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DConnectDialog.java312 String password = passwordTF.getText();
313 password = password.equals("") ? null : password;
317 jConsole.addUrl(url, userName, password, false);
330 jConsole.addHost(host, p, userName, password);
454 String password,
466 passwordTF.setText((password != null) ? password : "");
450 setConnectionParameters(String url, String host, int port, String userName, String password, String msg) argument
H A DVMPanel.java53 private String password; field in class:VMPanel
101 this.password = proxyClient.getPassword();
624 return password;
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSunX509KeyManagerImpl.java48 * password.
116 SunX509KeyManagerImpl(KeyStore ks, char[] password) throws KeyStoreException, argument
131 Key key = ks.getKey(alias, password);
/openjdk7/jdk/test/java/security/KeyRep/
H A DSerial.java149 char[] password = new char[] {'f', 'o', 'o'};
150 PBEKeySpec pbeKeySpec = new PBEKeySpec(password);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DDigestTest.java40 * if the password is wrong
106 static char[] passwd = "password".toCharArray();
131 boolean isRequest, String userName, char[] password,
144 HashA1 = encode(A1, password, md);
239 throw new RuntimeException ("Expected a ProtocolException from wrong password");
130 computeDigest( boolean isRequest, String userName, char[] password, String realm, String connMethod, String requestURI, String nonceString, String cnonce, String ncValue ) argument
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpClient.java265 * Attempts to log on the server with the specified user name and password.
268 * @param password The password for that user
273 public abstract FtpClient login(String user, char[] password) throws FtpProtocolException, IOException; argument
276 * Attempts to log on the server with the specified user name, password and
280 * @param password The password for that user.
286 public abstract FtpClient login(String user, char[] password, String account) throws FtpProtocolException, IOException; argument
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DDigestAuthentication.java249 * returning true means the request can be retried with the same userid/password
251 * username password.
431 boolean isRequest, String userName, char[] password,
447 String s1 = encode (s, password, md);
454 HashA1 = encode(A1, password, md);
430 computeDigest( boolean isRequest, String userName, char[] password, String realm, String connMethod, String requestURI, String nonceString, String cnonce, String ncValue ) argument
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DBasicAuthenticator.java94 * given name and password in the context of this
98 * @param password the password from the request
102 public abstract boolean checkCredentials (String username, String password); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java603 String password;
604 if (userInfo != null) { // get the user and password
609 password = null;
612 password = ParseUtil.decode(userInfo.substring(delimiter));
617 byte[] passwdBytes = password.getBytes();
619 // concatenate user name and password bytes and encode them
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java1022 private void tryLogin(String user, char[] password) throws sun.net.ftp.FtpProtocolException, IOException { argument
1026 * Checks for "331 User name okay, need password." answer
1029 if ((password != null) && (password.length > 0)) {
1030 issueCommandCheck("PASS " + String.valueOf(password));
1036 * Attempts to log on the server with the specified user name and password.
1039 * @param password The password for that user
1043 public sun.net.ftp.FtpClient login(String user, char[] password) throws sun.net.ftp.FtpProtocolException, IOException { argument
1050 tryLogin(user, password);
1081 login(String user, char[] password, String account) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DSocksSocketImpl.java152 * - the user.name & no password (backward compatibility behavior).
156 String password = null;
168 password = new String(pw.getPassword());
182 if (password != null) {
183 out.write(password.length());
185 out.write(password.getBytes("ISO-8859-1"));
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DRmiBootstrapTest.java90 public static final String PASSWORD_FILE_NAME="jmxremote.password";
93 public static final String KEYSTORE_PASSWD="password";
112 "com.sun.management.jmxremote.password.file";
266 * Parses the password file to read the credentials.
268 * {<subject>, <password>}.
269 * If the password file does not exists, return an empty list.
299 * useCredentials[i][1]=password
445 final String password =
448 System.setProperty(PropertyNames.KEYSTORE_PASSWD,password);
450 PropertyNames.KEYSTORE_PASSWD+"="+password);
[all...]
/openjdk7/jdk/test/sun/net/www/ftptest/
H A DFtpCommandHandler.java59 private String password = null; field in class:FtpCommandHandler
475 out.println("331 User name okay, need password.");
481 out.println("331 User name okay, need password.");
490 password = buf.toString();
495 if (auth.authenticate(username, password)) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DAesDkCrypto.java102 public byte[] stringToKey(char[] password, String salt, byte[] s2kparams) argument
108 return stringToKey(password, saltUtf8, s2kparams);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSecmod.java52 * ks.load(null, password);
591 public KeyStoreLoadParameter(TrustType trustType, char[] password) { argument
592 this(trustType, new PasswordProtection(password));
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java86 * user name and password.
91 * the user name and password.
394 * The password the reader, writer, or both supply to the method
399 private transient String password; field in class:BaseRowSet
897 * Returns the password used to create a database connection for this
898 * <code>RowSet</code> object. Because the password property is not
902 * @return the <code>String</code> object that represents the password
907 return password;
911 * Sets the password used to create a database connection for this
913 * object. Because the password propert
[all...]
/openjdk7/jdk/make/mksample/jmx/jmx-scandir/
H A DMakefile79 $(SAMPLE_DST_DIR)/src/etc/password.properties \
/openjdk7/jdk/test/sun/security/pkcs11/Secmod/
H A DAddPrivateKey.java60 ks.load(null, password);
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLSecurity.java452 protected void engineInit(KeyStore ks, char[] password) argument
455 theKeyManagerFactory.init(ks, password);
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetImpl.java302 * URL, username, and password arguments supplied. The new
330 * @param password - the user's password
335 public JdbcRowSetImpl(String url, String user, String password) throws SQLException { argument
354 setPassword(password);
537 * data source name, user name, and password must be set. If the
539 * URL, user name, and password must be set. In either case, the
4461 * Sets the password property for this <code>JdbcRowSet</code> object
4463 * is not serialized, the password property is set at run time before
4466 * if the <code>password</cod
4479 setPassword(String password) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java175 * Retrieves the password used to create a database connection.
176 * The password property is set at run time before calling the method
180 * @return the password for making a database connection
186 * Sets the database password for this <code>RowSet</code> object to
189 * @param password the password string
193 void setPassword(String password) throws SQLException; argument
1849 * user name, password, transaction isolation, and type map.
/openjdk7/langtools/test/tools/javac/T5090006/
H A Dbroken.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/framework/ junit/framework/Assert.class Assert. ...
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java102 * kdc.addPrincipal(String principal_name, char[] password);
316 * Adds a new principal to this realm with a given password.
319 * @param pass the password for the principal
329 * Adds a new principal to this realm with a random password
464 * Generates a 32-char random password
465 * @return the password
501 * Returns the password for a given principal
503 * @return the password
562 // For service whose password ending with a number, use it as kvno.
1347 private static byte[] EncryptionKeyDotStringToKey(char[] password, Strin argument
[all...]

Completed in 434 milliseconds

12345