Specifies certificate acceptance values.
Namespace:
Rebex.Net
Assembly:
Rebex.Networking (in Rebex.Networking.dll)
Syntax
Visual Basic |
---|
Public Enumeration TlsCertificateAcceptance |
C# |
---|
public enum TlsCertificateAcceptance |
Members
Member name | Description | |
---|---|---|
![]() | Accept |
A certificate is to be accepted.
|
![]() | CommonNameMismatch |
The certificate common name does not match the server's name.
|
![]() | RevocationCheckFailed |
Unable to perform revocation check of the server certificate.
|
![]() | UnsupportedSignatureAlgorithm |
The certificate chain contains a certificate with unsupported signature hash algorithm (usually SHA-2).
|
![]() | InvalidKeyUsage |
The certificate key usage does not allow the certificate to be used as server certificate.
|
![]() | UnknownServerName |
The target host name is unknown, which means that certificate's common name could not be verified.
|
![]() | Bad |
A certificate is corrupt, contains signatures that do not verify correctly, etc.
|
![]() | Unsupported |
A certificate is of an unsupported type.
|
![]() | Revoked |
A certificate was revoked by its signer.
|
![]() | Expired |
A certificate has expired or is not currently valid.
|
![]() | UnknownAuthority |
A CA certificate could not be found or untrusted CA.
|
![]() | Other |
Some other issue arose in processing the certificate, rendering it unacceptable.
|