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>2008-08-28 14:14:05 +0400
committerMarek Safar <marek.safar@gmail.com>2008-08-28 14:14:05 +0400
commit18c2b0eaaacb982aba37795dc716ce639bfbf60b (patch)
tree8e70592a8d405410fe65e4edb3d904e8305edf3c /mcs/class/System/System.Security.Cryptography.X509Certificates
parentd087095a254a48f45472fcb4a562625407738e8d (diff)
Warnings cleanup.
svn path=/trunk/mcs/; revision=111796
Diffstat (limited to 'mcs/class/System/System.Security.Cryptography.X509Certificates')
-rw-r--r--mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
index 8a89c0b0678..26da15b59e6 100644
--- a/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
+++ b/mcs/class/System/System.Security.Cryptography.X509Certificates/X509Chain.cs
@@ -48,7 +48,7 @@ namespace System.Security.Cryptography.X509Certificates {
// RFC3280 variables
private int max_path_length;
private X500DistinguishedName working_issuer_name;
- private string working_public_key_algorithm;
+// private string working_public_key_algorithm;
private AsymmetricAlgorithm working_public_key;
// other flags
@@ -415,7 +415,7 @@ namespace System.Security.Cryptography.X509Certificates {
// 6.1.2 - Initialization (incomplete)
// 6.1.2.a-f - policy stuff, some TODO, some not supported
// 6.1.2.g - working public key algorithm
- working_public_key_algorithm = certificate.PublicKey.Oid.Value;
+// working_public_key_algorithm = certificate.PublicKey.Oid.Value;
// 6.1.2.h-i - our key contains both the "working public key" and "working public key parameters" data
working_public_key = certificate.PublicKey.Key;
// 6.1.2.j - working issuer name
@@ -525,7 +525,7 @@ namespace System.Security.Cryptography.X509Certificates {
// 6.1.4.d-e - our key includes both the public key and it's parameters
working_public_key = certificate.PublicKey.Key;
// 6.1.4.f
- working_public_key_algorithm = certificate.PublicKey.Oid.Value;
+// working_public_key_algorithm = certificate.PublicKey.Oid.Value;
// TODO 6.1.4.g-j