TrustResult
data class TrustResult(val isTrusted: Boolean, val trustChain: X509CertChain? = null, val trustPoints: List<TrustPoint> = emptyList(), val error: Throwable? = null)
Class containing the verdict of whether a given entity is trusted.
Constructors
Link copied to clipboard
constructor(isTrusted: Boolean, trustChain: X509CertChain? = null, trustPoints: List<TrustPoint> = emptyList(), error: Throwable? = null)