Package com.trilead.ssh2.auth
Class AuthenticationManager
- java.lang.Object
-
- com.trilead.ssh2.auth.AuthenticationManager
-
- All Implemented Interfaces:
MessageHandler
public class AuthenticationManager extends java.lang.Object implements MessageHandler
AuthenticationManager.- Version:
- $Id: AuthenticationManager.java,v 1.1 2007/10/15 12:49:57 cplattne Exp $
- Author:
- Christian Plattner, plattner@trilead.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPROPERTY_TIMEOUTstatic longTIMEOUT
-
Constructor Summary
Constructors Constructor Description AuthenticationManager(TransportManager tm)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanauthenticateGssapiWithMic(java.lang.String user, java.lang.String host)booleanauthenticateInteractive(java.lang.String user, java.lang.String[] submethods, InteractiveCallback cb)booleanauthenticateNone(java.lang.String user)booleanauthenticatePassword(java.lang.String user, java.lang.String pass)booleanauthenticatePublicKey(java.lang.String user, char[] PEMPrivateKey, java.lang.String password, java.security.SecureRandom rnd)booleanauthenticatePublicKey(java.lang.String user, AgentProxy proxy)booleangetPartialSuccess()java.lang.String[]getRemainingMethods(java.lang.String user)voidhandleEndMessage(java.lang.Throwable cause)Called to inform that no more messages will be delivered.voidhandleMessage(byte[] msg, int msglen)Handle message.
-
-
-
Constructor Detail
-
AuthenticationManager
public AuthenticationManager(TransportManager tm)
-
-
Method Detail
-
getRemainingMethods
public java.lang.String[] getRemainingMethods(java.lang.String user) throws java.io.IOException- Throws:
java.io.IOException
-
getPartialSuccess
public boolean getPartialSuccess()
-
authenticateGssapiWithMic
public boolean authenticateGssapiWithMic(java.lang.String user, java.lang.String host) throws java.io.IOException- Throws:
java.io.IOException
-
authenticatePublicKey
public boolean authenticatePublicKey(java.lang.String user, AgentProxy proxy) throws java.io.IOException- Throws:
java.io.IOException
-
authenticatePublicKey
public boolean authenticatePublicKey(java.lang.String user, char[] PEMPrivateKey, java.lang.String password, java.security.SecureRandom rnd) throws java.io.IOException- Throws:
java.io.IOException
-
authenticateNone
public boolean authenticateNone(java.lang.String user) throws java.io.IOException- Throws:
java.io.IOException
-
authenticatePassword
public boolean authenticatePassword(java.lang.String user, java.lang.String pass) throws java.io.IOException- Throws:
java.io.IOException
-
authenticateInteractive
public boolean authenticateInteractive(java.lang.String user, java.lang.String[] submethods, InteractiveCallback cb) throws java.io.IOException- Throws:
java.io.IOException
-
handleMessage
public void handleMessage(byte[] msg, int msglen) throws java.io.IOExceptionDescription copied from interface:MessageHandlerHandle message.- Specified by:
handleMessagein interfaceMessageHandler- Parameters:
msg- the msgmsglen- the msglen- Throws:
java.io.IOException- the io exception
-
handleEndMessage
public void handleEndMessage(java.lang.Throwable cause) throws java.io.IOExceptionDescription copied from interface:MessageHandlerCalled to inform that no more messages will be delivered.- Specified by:
handleEndMessagein interfaceMessageHandler- Parameters:
cause- For diagnosis, the reason that caused the transport to close down.- Throws:
java.io.IOException- the io exception
-
-