Nice catch! Thanks!
On Sun, Feb 04, 2007 at 02:41:35PM +0000, [EMAIL PROTECTED] wrote:
> Author: dbkr
> Date: 2007-02-04 14:41:35 +0000 (Sun, 04 Feb 2007)
> New Revision: 11668
>
> Modified:
> trunk/freenet/src/freenet/crypt/RijndaelPCFBMode.java
> Log:
> Fix to r.11663 (RijndaelPCFBMode subclass constructor was missing a paramter
> to the superconstructer call).
>
>
> Modified: trunk/freenet/src/freenet/crypt/RijndaelPCFBMode.java
> ===================================================================
> --- trunk/freenet/src/freenet/crypt/RijndaelPCFBMode.java 2007-02-04
> 14:39:54 UTC (rev 11667)
> +++ trunk/freenet/src/freenet/crypt/RijndaelPCFBMode.java 2007-02-04
> 14:41:35 UTC (rev 11668)
> @@ -29,7 +29,7 @@
> }
>
> public RijndaelPCFBMode(Rijndael c, byte[] iv) {
> - super(c);
> + super(c, iv);
> int tempSize = c.getTempArraySize();
> a = new int[tempSize];
> t = new int[tempSize];
>
> _______________________________________________
> cvs mailing list
> [email protected]
> http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs
>
signature.asc
Description: Digital signature
_______________________________________________ Devl mailing list [email protected] http://emu.freenetproject.org/cgi-bin/mailman/listinfo/devl
