SecureBlackbox 2020 Kotlin Edition

Questions / Feedback?

ChainValidationResult Property

The general outcome of a certificate chain validation routine. Use ChainValidationDetails to get information about the reasons that contributed to the validation result.

Syntax

public val chainValidationResult: SamlreaderChainValidationResults

public enum class SamlreaderChainValidationResults(val value: Int) {
cvtValid(0),
cvtValidButUntrusted(1),
cvtInvalid(2),
cvtCantBeEstablished(3);
}

Default Value

0

Remarks

Available options:

cvtValid0The chain is valid

cvtValidButUntrusted1The chain is valid, but the root certificate is not trusted

cvtInvalid2The chain is not valid (some of certificates are revoked, expired, or contain an invalid signature)

cvtCantBeEstablished3The validity of the chain cannot be established because of missing or unavailable validation information (certificates, CRLs, or OCSP responses)

Use the ValidationLog property to access the detailed validation log.

This property is read-only and not available at design time.

Copyright (c) 2022 /n software inc. - All rights reserved.
SecureBlackbox 2020 Kotlin Edition - Version 20.0 [Build 8063]