Click or drag to resize

CertificateValidation Enumeration

What server certificatate validation should be performed.

Namespace:  Koopman.CheckPoint
Assembly:  CheckPoint.NET (in CheckPoint.NET.dll) Version: 0.5.1
Syntax
C#
[FlagsAttribute]
public enum CertificateValidation
Request Example View Source
Members
  Member nameValueDescription
None0 Trust any certificate. NOTE: Highly recommended not to use this for security reasons.
ValidCertificate1 Validates the server's certificate and chain.
CertificatePinning2 Validates server's certificate hash matches the provided hash.
All3 Server's certificate must be valid and also match the provided hash.
Auto4 If certificate hash provided then it will be checked, else any valid certificate will be allowed.
See Also