protected bool Equals(BouncyCastleTlsTestResult other)
 {
     return(Version == other.Version &&
            CipherSuite == other.CipherSuite &&
            CurveGroup == other.CurveGroup &&
            SignatureHashAlgorithm == other.SignatureHashAlgorithm &&
            TlsError == other.TlsError &&
            string.Equals(ErrorDescription, other.ErrorDescription) &&
            Equals(SmtpResponses, other.SmtpResponses));
 }
Ejemplo n.º 2
0
 public TlsRecord(TlsEvaluatedResult tlsEvaluatedResult, BouncyCastleTlsTestResult bouncyCastleTlsTestResult)
 {
     TlsEvaluatedResult        = tlsEvaluatedResult;
     BouncyCastleTlsTestResult = bouncyCastleTlsTestResult;
 }