Searched defs:authenticateWithPublicKey (Results 1 - 1 of 1) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DConnection.java36 * <li>calls some of the authentication methods (e.g., {@link #authenticateWithPublicKey(String, File, String) authenticateWithPublicKey()}).</li>
170 * @deprecated You should use one of the {@link #authenticateWithPublicKey(String, File, String) authenticateWithPublicKey()}
420 public synchronized boolean authenticateWithPublicKey(String user, char[] pemPrivateKey, String password) method in class:Connection
448 * and then calls <code>authenticateWithPublicKey(String, char[], String)</code>.
470 public synchronized boolean authenticateWithPublicKey(String user, File pemFile, String password) method in class:Connection
492 return authenticateWithPublicKey(user, cw.toCharArray(), password);

Completed in 124 milliseconds