Back to product page

Certificate property


Holds local certificate to be used for authentication.

Type

An ICertificate object. Reference to object that holds certificate (or private key) information.

Syntax

  • Basic
[Set]object.Certificate  [= ICertificate]
The Certificate(object,ICertificate) syntax has these parts:
objectAn expression evaluating to an object of type wodFtpDLX.
ICertificateAn Certificate object.

Remarks

If you don't plan to deal with certificates or private keys, most probably you will never use this property. But - if you plan to connect to servers that require client certificate for the connection, or you plan to create and use private/public keys for connecting for SFTP servers, you will need to specify this property.

This property should be set to valid ICertificate object which is part of our 'Certificate Management library' shipped with the installation package of wodFtpDLX. It will allow you to Load, Save, Generate... keys and certificates which can be used directly by the server, or should by signed by 3rd party authority and then used with the server. It can combine both OpenSSL type certificates, as well ones located in your Microsoft Windows crypto stores - and handle them transparently.

Setting certificate is really easy. Typically, you could do it like this:
 
Set Ftp1.Certificate = New Certificate
Ftp1.Certificate.GenerateKey 0 'RSAkey
Ftp1.Certificate.SaveKey "C:\mykey.txt"
 

or later on
 
Set Ftp1.Certificate = New Certificate
Ftp1.Certificate.LoadKey "C:\mykey.txt"
 

wodFtpDLX internally will never create this object (it only uses it), so if you don't plan to use ICertificate object, you don't have to distribute wodCertificate.DLL with your application.

Platforms

Windows