|
class | AuthenticatedStream |
| Contains the methods for passing credentials across a stream. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More...
|
|
class | SslStream |
| A stream that uses the SSL protocol to authenticate the server and optionally the client. More...
|
|
◆ LocalCertificateSelectionCallback
A user delegate used to select local SSL certificate.
◆ RemoteCertificateValidationCallback
A user delegate used to verify remote SSL certificate.
◆ AuthenticationLevel
WebRequest-specific authentication flags.
Enumerator |
---|
None | No authentication is required for the client and server.
|
MutualAuthRequested | The request does not fail if the server is not authenticated.
|
MutualAuthRequired | The current application will receive 'IOException' when the server is not authenticated.
|
◆ EncryptionPolicy
Enumerates the encryption policies.
Enumerator |
---|
RequireEncryption | Require encryption and never allow a 'Null' cipher.
|
AllowNoEncryption | Prefer using full encryption but a 'Null' cipher can be used if the server agrees.
|
NoEncryption | Allow no encryption and request that a 'Null' cipher be used if the other endpoint can handle a 'Null' cipher.
|
◆ SslPolicyErrors
Enumerates the policy errors of SSL.
Enumerator |
---|
None | No SSL policy errors.
|
RemoteCertificateNotAvailable | The certificate is unavailable.
|
RemoteCertificateNameMismatch | The certificate name mismatch.
|
RemoteCertificateChainErrors | The certificate chain contains errors.
|