Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2007-11-15 17:14:49 +0300
committerMarek Safar <marek.safar@gmail.com>2007-11-15 17:14:49 +0300
commite61dde083ea36098af5f7645ee9716b470351751 (patch)
treebdd88d59b09106464d23b561edd1006ca77f9534 /mcs/class/System/System.Security.Cryptography.X509Certificates
parent28771db34eac2756295ffda9b8045f8a1554cb5b (diff)
Warnings cleanup
svn path=/trunk/mcs/; revision=89678
Diffstat (limited to 'mcs/class/System/System.Security.Cryptography.X509Certificates')
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs12
1 files changed, 3 insertions, 9 deletions
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
index e7358f099f5..faae9347838 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
@@ -495,15 +495,15 @@ namespace System.Security.Cryptography.X509Certificates {
}
// TODO 6.1.3.d - check if certificate policies extension is present
- if (false) {
+ //if (false) {
// TODO - for X509ChainStatusFlags.InvalidPolicyConstraints
// using X509ChainPolicy.ApplicationPolicy and X509ChainPolicy.CertificatePolicy
// TODO - check for X509ChainStatusFlags.NoIssuanceChainPolicy
- } else {
+ //} else {
// TODO 6.1.3.e - set valid_policy_tree to NULL
- }
+ //}
// TODO 6.1.3.f - verify explict_policy > 0 if valid_policy_tree != NULL
}
@@ -801,12 +801,6 @@ namespace System.Security.Cryptography.X509Certificates {
return X509ChainStatusFlags.NoError;
}
- private MX.X509Crl OnlineCheck (X509Certificate2 certificate)
- {
- // CRL doesn't exists or couldn't be downloaded
- return null;
- }
-
private MX.X509Crl FindCrl (X509Certificate2 caCertificate)
{
string subject = caCertificate.SubjectName.Decode (X500DistinguishedNameFlags.None);