EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSSHClient.AuthenticationTypes

TElSSHClient     See also    


 

This property specifies which SSH authentication types are enabled

 
 

Declaration

[C#]
    int AuthenticationTypes;

[VB.NET]
    Property AuthenticationTypes As Integer

[Pascal]
    property AuthenticationTypes : Integer;

[VB6]
    Sub EnableAuthenticationType(AuthType As tagTxSSHAuthenticationType)
    Sub DisableAuthenticationType(AuthType As tagTxSSHAuthenticationType)
    Function IsAuthenticationTypeEnabled(AuthType As tagTxSSHAuthenticationType) As Boolean

[ActiveX]
    HRESULT _stdcall EnableAuthenticationType( [in] TxSSHAuthenticationType AuthType );
    HRESULT _stdcall DisableAuthenticationType( [in] TxSSHAuthenticationType AuthType );
    HRESULT _stdcall IsAuthenticationTypeEnabled( [in] TxSSHAuthenticationType AuthType, [out, retval] VARIANT_BOOL * Value );

[DLL]
    not implemented;
 
 

Values

Definition Value
SSH_AUTH_TYPE_RHOSTS 1 (0x01)
SSH_AUTH_TYPE_PUBLICKEY 2 (0x02)
SSH_AUTH_TYPE_PASSWORD 4 (0x04)
SSH_AUTH_TYPE_HOSTBASED 8 (0x08)
SSH_AUTH_TYPE_KEYBOARD 16 (0x10)
SSH_AUTH_TYPE_GSSAPI_WITH_MIC 32 (0x20)
SSH_AUTH_TYPE_GSSAPI_KEYEX 64 (0x40)
Declared in
[.NET] [Pascal]
Namespace: SBSSHConstants
Assembly: SecureBlackbox.SSHClient
Unit: SBSSHConstants

 
 

Description

    Set this property before calling the Open method to specify which authentication types SSH client should try to use during the negotiation process. The authentication type is calculated as bitwise OR operation on masks of types that should be enabled.

 
 

See also:     AuthTypePriorities     Open     OnAuthenticationSuccess     OnAuthenticationFailed

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation