basic cli parsing
This commit is contained in:
14
lib/archive/zip.ml
Normal file
14
lib/archive/zip.ml
Normal file
@ -0,0 +1,14 @@
|
||||
(** This modules handle zip archive format
|
||||
|
||||
ZIP file format is actually really easy to parse
|
||||
the file is a list of files compressed
|
||||
each entry is appended with a header
|
||||
|
||||
ZIP file supports multiple compression algorithm,
|
||||
the most frequently used is LZMA
|
||||
files can be encrypted using a weak algorithm
|
||||
which has been deprecated or AES
|
||||
*)
|
||||
|
||||
let signature = Bytes.of_string "PK\x00\x00"
|
||||
|
Reference in New Issue
Block a user