OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:authenticateWithPublicKey
(Results
1 - 4
of
4
) sorted by null
/external/ganymed-ssh2/examples/
PortForwarding.java
44
boolean isAuthenticated = conn.
authenticateWithPublicKey
(username, keyfile, keyfilePass);
PublicKeyAuthentication.java
37
boolean isAuthenticated = conn.
authenticateWithPublicKey
(username, keyfile, keyfilePass);
SwingShell.java
570
boolean res = conn.
authenticateWithPublicKey
(username, key, esd.answer);
590
boolean res = conn.
authenticateWithPublicKey
(username, key, esd.answer);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java
36
* <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)
448
* and then calls <code>
authenticateWithPublicKey
(String, char[], String)</code>.
470
public synchronized boolean
authenticateWithPublicKey
(String user, File pemFile, String password)
492
return
authenticateWithPublicKey
(user, cw.toCharArray(), password);
[
all
...]
Completed in 316 milliseconds