BaseTransport.Encryptor
BaseTransport
See also
Contains a reference to the Encryptor object.
[C++]
void setEncryptor(MCBaseEncryption* Value);
MCBaseEncryption* getEncryptor();
[Pascal]
property Encryptor : TMCBaseEncryption;
[VB6]
Property Encryptor As IMCXBaseEncryption
[ActiveX]
HRESULT _stdcall Encryptor([in] IMCXBaseEncryption * Value );
HRESULT _stdcall Encryptor([in] IMCXBaseEncryption * Value );
[C#]
public MCBaseEncryption Encryptor;
[VB.NET]
Public Property Encryptor As MCBaseEncryption
[Java]
public void setEncryptor(MCBaseEncryption encryptor);
public MCBaseEncryption getEncryptor();
[Java ME]
public void setEncryptor(MCBaseEncryption encryptor);
public MCBaseEncryption getEncryptor();
[Palm]
void setEncryptor(MCBaseEncryption* Value);
MCBaseEncryption* getEncryptor(void);
[DLL]
void __stdcall MCBaseTransportSetEncryptor (HMCBaseTransport h, HMCBaseEncryption value);
HMCBaseEncryption __stdcall MCBaseTransportGetEncryptor (HMCBaseTransport h);
- h - handle to the object that was returned by Create method
This property contains a reference to the Encryptor object, which is used to encrypt the message data. The whole message including all headers is encrypted. Note, that there is no integrity checking performed during decryption, so you need to use Sealing classes to check integrity of the data being transferred.
One encryptor object can be bound to multiple transports.
|