Author: toad Date: 2007-07-28 18:19:35 +0000 (Sat, 28 Jul 2007) New Revision: 14413
Modified: trunk/freenet/src/freenet/crypt/PCFBMode.java Log: comments Modified: trunk/freenet/src/freenet/crypt/PCFBMode.java =================================================================== --- trunk/freenet/src/freenet/crypt/PCFBMode.java 2007-07-28 16:35:34 UTC (rev 14412) +++ trunk/freenet/src/freenet/crypt/PCFBMode.java 2007-07-28 18:19:35 UTC (rev 14413) @@ -11,6 +11,11 @@ * Control mechanism for the Periodic Cipher Feed Back mode. This is * a CFB variant used apparently by a number of programs, including PGP. * Thanks to Hal for suggesting it. + * + * http://www.streamsec.com/pcfb1.pdf + * + * NOTE: This is identical to CFB if block size = key size. As of Freenet 0.7, + * we use it with block size = key size. * * @author Scott */
