EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElSimpleSSHClient.AuthenticationTypes

TElSimpleSSHClient     See also    


 

This property specifies which SSH authentication types are enabled

 
 

Declaration

[C#]
    public int AuthenticationTypes = 4;

[VB.NET]
    Property AuthenticationTypes As Integer

[Pascal]
    property AuthenticationTypes : Integer;

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

[ActiveX]
    HRESULT _stdcall IElSimpleSSHClientX.EnableAuthenticationType( [in] TxSSHAuthenticationType AuthType );
    HRESULT _stdcall IElSimpleSSHClientX.DisableAuthenticationType( [in] TxSSHAuthenticationType AuthType );
    HRESULT _stdcall IElSimpleSSHClientX.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)
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:     Open     OnAuthenticationSuccess     OnAuthenticationFailed

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