Browse code

add method id for AES encrypted archives

git-svn: trunk@1609

Tomasz Kojm authored on 2005/06/09 07:56:53
Showing 2 changed files
... ...
@@ -1,3 +1,12 @@
1
+Wed Jun  8 16:01:22 CEST 2005 (tk)
2
+----------------------------------
3
+  * libclamav/zziplib/zzip-file.c: add method id for AES encrypted archives (thanks to
4
+    David Majorel <dm*lagoon.nc>). 
5
+
6
+Wed Jun  8 15:37:34 CEST 2005 (tk)
7
+----------------------------------
8
+  * clamscan/manager.c: better message on zip/rar unpacking error
9
+
1 10
 Tue Jun  7 03:34:25 CEST 2005 (tk)
2 11
 ----------------------------------
3 12
   * Simplify output handling in all programs: move most of the logic of how
... ...
@@ -194,6 +194,7 @@ zzip_file_open(ZZIP_DIR * dir, zzip_char_t* name, int o_mode)
194 194
 	    case 6: /* implode */
195 195
             case 8: /* inflate */
196 196
 	    case 9: /* deflate */
197
+	    case 99: /* AES encrypted file: go on and try to unpack it (zip headers are not reliable) */
197 198
                 break;
198 199
             default:
199 200
 		cli_dbgmsg("ZzipLib: Unsupported compression mode (%d)\n", hdr->d_compr);