From 8fe07643247b2c014d56e5f2252eb74a04ec8eb4 Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Thu, 15 Jul 2004 18:25:56 +0000 Subject: 2004-07-15 Sebastien Pouliot * DES.cs: Fixed FeedbackSizeValue to 8. * RC2.cs: Fixed FeedbackSizeValue to 8. * TripleDES.cs: Fixed FeedbackSizeValue to 8. svn path=/branches/mono-1-0/mcs/; revision=31191 --- mcs/class/corlib/System.Security.Cryptography/RC2.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'mcs/class/corlib/System.Security.Cryptography/RC2.cs') diff --git a/mcs/class/corlib/System.Security.Cryptography/RC2.cs b/mcs/class/corlib/System.Security.Cryptography/RC2.cs index 58566078d5f..70119078722 100644 --- a/mcs/class/corlib/System.Security.Cryptography/RC2.cs +++ b/mcs/class/corlib/System.Security.Cryptography/RC2.cs @@ -4,10 +4,6 @@ // Authors: // Andrew Birkett (andy@nobugs.org) // Sebastien Pouliot (sebastien@ximian.com) -// -// (C) 2004 Novell (http://www.novell.com) -// - // // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // @@ -77,7 +73,7 @@ namespace System.Security.Cryptography { { KeySizeValue = 128; BlockSizeValue = 64; - FeedbackSizeValue = 64; + FeedbackSizeValue = 8; // The RFC allows keys of 1 to 128 bytes, but MS impl only supports // 40 to 128 bits, sigh. -- cgit v1.2.3