Matthew Ford's initial implementation and test classes for
authorMiguel de Icaza <miguel@gnome.org>
Wed, 1 Aug 2001 23:05:07 +0000 (23:05 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Wed, 1 Aug 2001 23:05:07 +0000 (23:05 -0000)
commitbaa39453fc9572621c3b036f94a73732a88025ec
treea13843c210d95084daf33cf57fccd99410320651
parent30577d27468d111800a6712650c393ef627f3042
Matthew Ford's initial implementation and test classes for
System.Security.Cryptography.

svn path=/trunk/mcs/; revision=371
19 files changed:
mcs/class/corlib/System.Security.Cryptography.Test/MD5Test.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography.Test/SHA1Test.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography.Test/SHA256Test.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography.Test/SHA384Test.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography.Test/SHA512Test.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/CipherMode.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/CryptoStreamMode.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/HashAlgorithm.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/ICryptoTransform.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/KeySizes.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/MD5.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/MD5CryptoServiceProvider.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/PaddingMode.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA1.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA1CryptoServiceProvider.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA256.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA256Managed.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA384.cs [new file with mode: 0644]
mcs/class/corlib/System.Security.Cryptography/SHA512.cs [new file with mode: 0644]