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
AgeCommit message (Collapse)Author
2010-03-16rename net_2_1 to moonlightJb Evain
svn path=/trunk/mcs/; revision=153638
2009-06-052009-06-05 Marek Safar <marek.safar@gmail.com>Marek Safar
* Makefile: Fixed NET_2_0 conditional to actually handle Mono.Security dependency. svn path=/trunk/mcs/; revision=135540
2008-11-022008-11-01 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Add new tests to build System.Security.Cryptography.Pkcs/CmsRecipientCollectionTest.cs System.Security.Cryptography.Xml/TransformTest.cs System.Security.Cryptography.Xml/XmlDecryptionTransformTest.cs svn path=/trunk/mcs/; revision=117623
2008-10-14* XmlDsigXsltTranformTest.cs: Added test for .ctor (bool).Gert Driesen
* XmlDsigEnvelopedTransformTest.cs: Added test for .ctor (bool). Use Assert class. Improved properties tests. * XmlDsigC14TransformTest.cs: Added test for .ctor (bool). * XmlDsigExcC14NTransformTest.cs: Added .ctor tests and added asserts IncludsiveNamespacesPrefixList * XmlDsigExcC14NWithCommentsTransformTest.cs: Added basic .ctor and properties tests. * XmlDsigC14NWithCommentsTransformTest.cs: Fixed line endings. * XmlLicenseTransformTest.cs: Added basic .ctor and properties tests. * XmlDsigBase64Transform.cs: Use constant for Algorithm namespace. * XmlDsigExcC14NTransform.cs: Fixed ctors to use WithComments algorithm if includeComments is true. Assign includeNamespacesPrefixList to instance field. * XmlDsigExcC14NWithCommentsTransform.cs: Remove unnecessary assignment to Algorithm now that base ctor is fixed. * XmlDsigC14NWithCommentsTransform.cs: Remove unnecessary assignment to Algorithm now that base ctor is fixed. * XmlDsigC14NTransform.cs: In default ctor, just invoke .ctor (bool). In .ctor (bool), assign WithComments algorithm if includeComments is true. Use constants for Algorithm namespace. * XmlDsigEnvelopedSignatureTransform.cs: Use constant for Algorithm namespace. * XmlDsigXPathTransform.cs: Use constant for Algorithm namespace. * XmlDsigXsltTransform.cs: Use constant for Algorithm namespace. * XmlLicenseTransform.cs: Assign Algorithm in ctor. * XmlSignature.cs: Added constant for XmlLicenseTransform algorithm. * System.Security_test.dll.sources: Added XmlLicenseTransformTest.cs and XmlDsigExcC14NWithCommentsTransformTest.cs. svn path=/trunk/mcs/; revision=115803
2008-09-232008-09-23 Marek Safar <marek.safar@gmail.com>Marek Safar
* Makefile: Don't override global debug flag. svn path=/trunk/mcs/; revision=113868
2007-06-122007-06-12 Marek Safar <marek.safar@gmail.com>Marek Safar
* Makefile: Check only major framework version to do 2.x build. svn path=/trunk/mcs/; revision=79315
2007-01-172007-01-17 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* XmlCanonicalizer.cs : don't output default namespace when the node's namespace is not empty. Check "visibly utilized" namespace nodes in exc-c14n. Also, in exc-c14n, rendered namespaces are not written. Added InclusiveNamespaces PrefixList field (not in use yet). * XmlDsigExcC14NTransform.cs : re-imported from XmlDsigC14NTransform.cs. * System.Security_test.dll.sources : added XmlDsigExcC14NTransformTest.cs. * XmlDsigExcC14NTransformTest.cs : new tests, mostly copied from non-exc test. * xmldsig.cs : exc-c14n tests could be run under 2.0 profile (and they are not working correctly yet). * Makefile : Added net_2_0 profile support. svn path=/trunk/mcs/; revision=71220
2006-12-152006-12-15 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* Makefile: Execute PKITS tests only if the data is installed locally. See System.dll unit tests for details. * System.Security_test.dll.sources: Add some PKITS unit tests to the build. svn path=/trunk/mcs/; revision=69543
2006-11-082006-11-08 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Added unit and CAS tests for System.Security.Cryptography.X509Certificates.X509Certificate2UI svn path=/trunk/mcs/; revision=67535
2006-09-222006-09-22 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* EncryptedXml.cs : use Padding member instead of const ISO10126 (though I doubt it should be there). Use it in DecryptData(). * EncryptedXmlTest.cs, EncryptedXmlSample3.xml : another decryption test for padding sanity. * Makefile: Added Test/S.S.C.Xml/EncryptedXmlSample3.xml to EXTRA_DISTFILES. svn path=/trunk/mcs/; revision=65804
2006-09-212006-09-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Makefile: oops, syntax breakage. svn path=/trunk/mcs/; revision=65767
2006-09-212006-09-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* EncryptedXml.cs : Handle orthodox padding (xmlenc spec section 5.2). However, like EncryptedXmlSample1, it might not exist, so make it optional. * EncryptedXmlTest.cs, EncryptedXmlSample2.xml : Added another case that expects correct padding processing which is specified in W3C xmlenc spec section 5.2. * Makefile: Added Test/S.S.C.Xml/EncryptedXmlSample2.xml to EXTRA_DISTFILES. svn path=/trunk/mcs/; revision=65766
2006-09-212006-09-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* EncryptedXml.cs : True fix for DecryptData(). It indeed uses block size (or possibly IV size) in Transform(), but only for stripping the heading n bytes garbage. * EncryptedXmlTest.cs : new file. Added practical example. * EncryptedXmlSample1.xml, sample.pfx : support files for the above test. * System.Security_test.dll.sources: added EncryptedXmlTest.cs. * Makefile: added some extra test support files as EXTRA_DISTFILES. svn path=/trunk/mcs/; revision=65750
2006-09-062006-09-06 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* CipherReference.cs, EncryptedReference.cs : unify duplicate code. Remove incorrect name check in the latter class so that it works for DataReference and KeyReference as well. * DataReferenceTest.cs : new test. * System.Security_test.dll.sources: added DataReferenceTest.cs. svn path=/trunk/mcs/; revision=64990
2005-09-26In Test/System.Security.Cryptography:Sebastien Pouliot
2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * Asn*.cs, Oid*.cs: Moved to System.dll In Test/System.Security.Permissions: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * StorePermissionAttributeTest.cs: Moved in System.dll In Test/System.Security.Cryptography.X509Certificates: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * All tests moved to System.dll assembly. In System.Security.Cryptography: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * Asn*.cs, Oid*.cs: Moved to System.dll In System.Security.Permissions: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * Store*.cs: Moved in System.dll In .: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * System.Security.dll.sources: Remove all X509 related classes. * System.Security_test.dll.sources: Remove all X509 related tests. * System.Security.Cryptography.X509Certificates/*.cs: moved to System.dll assembly. * Test/System.Security.Cryptography.X509Certificates/*.cs: moved to System.dll assembly. In System.Security.Cryptography.X509Certificates: 2005-09-26 Sebastien Pouliot <sebastien@ximian.com> * All classes moved in System.dll svn path=/trunk/mcs/; revision=50770
2005-05-182005-05-18 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Added unit tests for System. Security.Permissions.StorePermissionAttribute class. svn path=/trunk/mcs/; revision=44673
2005-05-032005-05-03 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Added unit tests for System. Security.Cryptography.Pkcs.SignerInfoCollection class. svn path=/trunk/mcs/; revision=43972
2005-04-252005-04-25 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Added IRelDecryptor interface and XmlLicenseTransform class to System.Security.Cryptography.Xml (2.0). svn path=/trunk/mcs/; revision=43540
2005-04-232005-04-23 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Added StorePermission and StorePermissionAttribute to System.Security.Permissions (2.0). svn path=/trunk/mcs/; revision=43477
2005-04-042005-04-04 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* System.Security.dll.sources: added XmlSignatureStreamReader.cs. * XmlSignatureStreamReader.cs : new file. Handles Stream to rip CR off. * XmlDsigXPathTransform.cs, XmlDecryptionTransform.cs, XmlDsigC14NTransform.cs, XmlDsigEnvelopedSignatureTransform.cs, XmlDsigXsltTransform.cs : use XmlSignatureStreamReader for Streams. * XmlCanonicalizer.cs : don't rip &#xD; off here. * XmlDsigC14NTransformTest.cs : Reverted last change in LoadInputAsXmlNodeList2(). It is MS bug. It now handles Load() behavioral difference between Stream and XmlDocument as expected. * Makefile : Fixed reference to Mono.Security.dll. Added decent-reader option that indicates to use CR ('\r') stripping TextReader. * xmldsig.cs : use CR-stripping TextReader (optionally). svn path=/trunk/mcs/; revision=42525
2005-01-182005-01-17 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Added System.Security.Cryptography. X509Certificates/X509EnhancedKeyUsageExtension.cs and X509SubjectKeyIdentifierHashAlgorithm.cs to the build. * System.Security_test.dll.sources: Added System.Security.Cryptography .Pkcs/Pkcs9ContentTypeTest.cs, Pkcs9MessageDigestTest.cs and System. Security.Cryptography.X509Certificates/X509BasicConstraintsExtensionTest.cs, X509EnhancedKeyUsageExtensionTest.cs, X509ExtensionTest.cs, X509KeyUsageExtensionTest.cs and X509SubjectKeyIdentifierExtensionTest.cs to the unit test assembly. svn path=/trunk/mcs/; revision=39055
2005-01-06* Makefile (LIB_MCS_FLAGS): Add reference to Mono.Security.dllRaja R Harinath
only in the NET 2.0 profile. See 2004-07-07 entry. svn path=/trunk/mcs/; revision=38416
2005-01-052005-01-05 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* Makefile: Don't ignore the CS0119 warnings (private field not used) when building the assembly (the code is already clean for this). * System.Security.dll.sources: Add DataProtectionPermission, Attribute and Flags to the assembly (moved from corlib). * System.Security_test.dll.sources: Add DataProtectionPermission Attribute unit tests (moved from corlib unit tests). svn path=/trunk/mcs/; revision=38362
2004-12-232004-12-23 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Added System.Security.Cryptography/ ProtectedData.cs, ProtectedMemory.cs, DataProtectionScope.cs and MemoryProtectionScope.cs as they been moved from mscorlib to here. * System.Security_test.dll.sources : Added Test/System.Security. Cryptography/ProtectedDataTest.cs and ProtectedMemoryTest.cs for the same reason. svn path=/trunk/mcs/; revision=38060
2004-09-052004-09-04 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.Pkcs classes. svn path=/trunk/mcs/; revision=33349
2004-09-032004-09-03 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.X509Certificates classes svn path=/trunk/mcs/; revision=33284
2004-09-022004-09-02 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.Xml classes svn path=/trunk/mcs/; revision=33235
2004-07-092004-07-09 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Fixed unit tests to work with Fx 2.0 beta 1. svn path=/trunk/mcs/; revision=30949
2004-07-092004-07-08 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Fixed classes to match Fx 2.0 beta 1. svn path=/trunk/mcs/; revision=30910
2004-07-082004-07-07 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security_test.dll.sources: Added a lot of existing tests (from 1.2 documentation) that were never compiled. svn path=/trunk/mcs/; revision=30859
2004-07-072004-07-07 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* Makefile: Added a reference to Mono.Security because we'll require many class from it for the NET_2_0 profile - but it would be better not to have the dependency for NET_1_1. * System.Security.dll.sources: Added a lot of existing classes (from 1.2 documentation) that were never compiled. svn path=/trunk/mcs/; revision=30857
2004-03-272004-03-26 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* System.Security.dll.sources: Added internal class Manifest. svn path=/trunk/mcs/; revision=24647
2004-03-262004-03-26 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* System.Security_test.dll.sources : Added XmlDsigEnvelopedSignatureTest.cs. svn path=/trunk/mcs/; revision=24640
2004-03-222004-03-22 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* Makefile: Added /nowarn to cleanup display when building. svn path=/trunk/mcs/; revision=24435
2004-03-162004-03-16 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* System.Security.dll.sources: added XmlDsigNodeList.cs svn path=/trunk/mcs/; revision=24121
2004-02-192004-02-19 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.Xml.SymmetricKeyWrap svn path=/trunk/mcs/; revision=23254
2004-02-112004-02-11 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security_test.dll.sources: Added unit tests for XmlDsigXPathTransform. svn path=/trunk/mcs/; revision=22987
2004-02-112004-02-10 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.Xml classes. svn path=/trunk/mcs/; revision=22963
2004-02-072004-02-07 Tim Coleman <tim@timcoleman.com>Tim Coleman
* System.Security.dll.sources: Add new System.Security.Cryptography.Xml classes. svn path=/trunk/mcs/; revision=22850
2004-01-122004-01-11 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.dll.sources: Added AssemblyInfo.cs and Locale.cs. svn path=/trunk/mcs/; revision=21964
2003-07-252003-07-24 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.dll.sources: Added new Mono.Xml.XmlCanonicalizer.cs from Aleksey Sanin. svn path=/trunk/mcs/; revision=16635
2003-03-052003-03-04 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.build: Added a new output System.Security_cmp.dll which links with mscorlib. This version is to be used to generate the class status web page (required for CorCompare). svn path=/trunk/mcs/; revision=12200
2003-03-042003-03-03 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.build: Updated build file to stop linking with MS assemblies (and like with Mono's corlib instead). svn path=/trunk/mcs/; revision=12157
2003-03-022003-03-02 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* list.unix: Added XmlSignature.cs. svn path=/trunk/mcs/; revision=12103
2003-01-182003-01-17 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.build: Simplified and fixed some issues. svn path=/trunk/mcs/; revision=10638
2002-11-292002-11-28 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* System.Security.build: New. Nant build file for Windows. svn path=/trunk/mcs/; revision=9241