Unit
ScSSLServer
Description
TScSSLServerConnection is a component that implements functionality of the TLS/SSL server. TScSSLServerConnection connects to a client supporting the TLS/SSL protocol.
Before establishing a connection, you should initialize the server by calling the Init method and passing the input and output sources for the connection.
A connection is opened by calling the Connect method.
When you connect to a client that supports TLS/SSL, data will be transferred as plaintext form unless you set the IsSecure property to True.
To establish a secure connection through TLS/SSL, you can use the following parameters:
• | the type of the security protocol; |
• | the encryption and data integrity algorithms to encrypt the data to be transferred; |
• | the chain of the server certificate names (CertNameChain). |
You use the ReadBuffer and WriteBuffer methods to exchange data.
See Also