SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  C++  


TElSSLServer.AddCertTypeHandler

TElSSLServer     See also     


 

Attaches a certificate type handler.

 

Declaration

[C#/Java]
    void AddCertTypeHandler(TElSSLCertTypeHandler Handler);

[VB.NET]
    Sub AddCertTypeHandler(ByVal Handler As TElSSLCertTypeHandler)

[Pascal]
    procedure AddCertTypeHandler( Handler : TElSSLCertTypeHandler);

[C++]
    not implemented;

   

Parameters

  • Handler - the handler to be attched
   

Description

    Use this method to attach a certificate type handler, such as OpenPGP handler, for TLS communication. When the handler is attached, you can use alternative authentication methods that use this handler. Note that when you attach an OpenPGP handler, OpenPGP authentication is used automatically.

   

See also:     RemoveCertTypeHandler     TElSSLCertTypeHandler    

 
Back to top