You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom roots of trust that are not trusted by the system are specified with revocation checks on. In these cases, X509Chain.Build() library method will always fail to perform revocation checks and report revocation unknown issues.
CoseSign1.Certificates.Local.Validators.X509ChainTrustValidator must remain in a .NET Standard 2.0 lib to maintain compatibility with several consumers of the library. Unfortunately, this means we can't use the modern .NET implementations of X509Chain and X509ChainPolicy, which offer support for custom trust providers. Because of this limitation, we have to do some amount of post-processing of the certificate trust chain results.
The text was updated successfully, but these errors were encountered:
Custom roots of trust that are not trusted by the system are specified with revocation checks on. In these cases, X509Chain.Build() library method will always fail to perform revocation checks and report revocation unknown issues.
CoseSign1.Certificates.Local.Validators.X509ChainTrustValidator must remain in a .NET Standard 2.0 lib to maintain compatibility with several consumers of the library. Unfortunately, this means we can't use the modern .NET implementations of X509Chain and X509ChainPolicy, which offer support for custom trust providers. Because of this limitation, we have to do some amount of post-processing of the certificate trust chain results.
The text was updated successfully, but these errors were encountered: