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:
authorSebastien Pouliot <sebastien@ximian.com>2006-12-15 22:29:32 +0300
committerSebastien Pouliot <sebastien@ximian.com>2006-12-15 22:29:32 +0300
commit77cbf17b0d81bb2d953bf082886f839caddbfa40 (patch)
treed46d3f874d2043d6238739b287fd08cd67887498 /mcs/class/System.Security/System.Security.Cryptography.Pkcs
parentd028b96e907b49221fc4304a8ca73c8a78630a5c (diff)
2006-12-15 Sebastien Pouliot <sebastien@ximian.com>
* SignedCms.cs: Add missing TODO. Some code exists but depends on other, unimplemented, stuff. svn path=/trunk/mcs/; revision=69542
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Pkcs')
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog5
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignedCms.cs5
2 files changed, 8 insertions, 2 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
index fba75487d4e..c143d54f238 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-15 Sebastien Pouliot <sebastien@ximian.com>
+
+ * SignedCms.cs: Add missing TODO. Some code exists but depends on
+ other, unimplemented, stuff.
+
2005-09-27 Sebastien Pouliot <sebastien@ximian.com>
* Pkcs9Attribute.cs: Added new CopyFrom method overrides (2.0 RC).
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignedCms.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignedCms.cs
index d4a7332b7fe..4608aeedae6 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignedCms.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignedCms.cs
@@ -120,6 +120,7 @@ namespace System.Security.Cryptography.Pkcs {
// methods
+ [MonoTODO]
public void CheckSignature (bool verifySignatureOnly)
{
foreach (SignerInfo si in _info) {
@@ -127,6 +128,7 @@ namespace System.Security.Cryptography.Pkcs {
}
}
+ [MonoTODO]
public void CheckSignature (X509Certificate2Collection extraStore, bool verifySignatureOnly)
{
foreach (SignerInfo si in _info) {
@@ -285,9 +287,8 @@ namespace System.Security.Cryptography.Pkcs {
return null;
}
- // counterSsignerInfo -> counterSignerInfo
[MonoTODO]
- public void RemoveSignature (SignerInfo counterSsignerInfo)
+ public void RemoveSignature (SignerInfo signerInfo)
{
}