[pgsqlclient-checkins] pgsqlclient_10/PgSqlClient.Security.Tls/source/Cryptography ARC4Managed.cs,1.
Status: Inactive
Brought to you by:
carlosga_fb
|
From: <car...@us...> - 2003-09-16 14:29:23
|
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Cryptography In directory sc8-pr-cvs1:/tmp/cvs-serv7746 Modified Files: ARC4Managed.cs HMAC.cs RC4.cs Log Message: Changed classes from public to internal Index: ARC4Managed.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Cryptography/ARC4Managed.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ARC4Managed.cs 20 Aug 2003 11:50:05 -0000 1.1 --- ARC4Managed.cs 16 Sep 2003 14:29:20 -0000 1.2 *************** *** 13,17 **** // http://www.qrst.de/html/dsds/rc4.htm ! public class ARC4Managed : RC4, ICryptoTransform { private byte[] key; --- 13,17 ---- // http://www.qrst.de/html/dsds/rc4.htm ! internal class ARC4Managed : RC4, ICryptoTransform { private byte[] key; Index: HMAC.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Cryptography/HMAC.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HMAC.cs 1 Sep 2003 10:21:37 -0000 1.2 --- HMAC.cs 16 Sep 2003 14:29:20 -0000 1.3 *************** *** 30,34 **** * Extending the KeyedHashAlgorithm Class (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconextendingkeyedhashalgorithmclass.asp) */ ! public class HMAC : System.Security.Cryptography.KeyedHashAlgorithm { #region FIELDS --- 30,34 ---- * Extending the KeyedHashAlgorithm Class (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconextendingkeyedhashalgorithmclass.asp) */ ! internal class HMAC : System.Security.Cryptography.KeyedHashAlgorithm { #region FIELDS Index: RC4.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PgSqlClient.Security.Tls/source/Cryptography/RC4.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RC4.cs 20 Aug 2003 11:50:05 -0000 1.1 --- RC4.cs 16 Sep 2003 14:29:20 -0000 1.2 *************** *** 14,18 **** namespace Mono.Security.Cryptography { ! public abstract class RC4 : SymmetricAlgorithm { private static KeySizes[] s_legalBlockSizes = { --- 14,18 ---- namespace Mono.Security.Cryptography { ! internal abstract class RC4 : SymmetricAlgorithm { private static KeySizes[] s_legalBlockSizes = { |