2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / SignerInfoCollection.cs
index 1f0d38253a73ec564d526241c74abe46e76bc6eb..a5bd5dd2a3f22a58bdcfa601c9a9e3188c23eb63 100755 (executable)
@@ -2,11 +2,10 @@
 // SignerInfoCollection.cs - System.Security.Cryptography.Pkcs.SignerInfoCollection
 //
 // Author:
-//     Sebastien Pouliot (spouliot@motus.com)
+//     Sebastien Pouliot  <sebastien@ximian.com>
 //
 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
+// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -35,7 +34,7 @@ using System.Collections;
 
 namespace System.Security.Cryptography.Pkcs {
 
-       public class SignerInfoCollection : ICollection {
+       public sealed class SignerInfoCollection : ICollection {
 
                private ArrayList _list;
 
@@ -75,7 +74,10 @@ namespace System.Security.Cryptography.Pkcs {
                        _list.CopyTo (array, index);
                }
 
-               public void CopyTo (RecipientInfo[] array, int index) {}
+               [MonoTODO]
+               public void CopyTo (SignerInfo[] array, int index)
+               {
+               }
 
                public SignerInfoEnumerator GetEnumerator ()
                {
@@ -89,4 +91,4 @@ namespace System.Security.Cryptography.Pkcs {
        }
 }
 
-#endif
\ No newline at end of file
+#endif