Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12251/UI
Modified Files:
HTTP.pm
Log Message:
Changed HTTP.pm to add a "header" argument when constructing the Blowfish object. Newer version of Crypt::Blowfish would die if the header was missing.
Index: HTTP.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTTP.pm,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** HTTP.pm 20 Feb 2006 02:22:57 -0000 1.35
--- HTTP.pm 31 Jan 2007 10:45:09 -0000 1.36
***************
*** 107,111 ****
'prepend_iv' => 0,
'regenerate_key' => 0,
! 'salt' => 1 } );
return 1;
--- 107,112 ----
'prepend_iv' => 0,
'regenerate_key' => 0,
! 'salt' => 1,
! 'header' => 'salt', } );
return 1;
|