firmex/lib/archive/zip.ml

18 lines
501 B
OCaml
Raw Normal View History

2024-08-18 03:49:34 +07:00
(** 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
*)
2024-08-18 09:10:24 +07:00
type t = { file : string; typ : string }
2024-08-18 03:49:34 +07:00
2024-08-18 09:10:24 +07:00
let signature = Bytes.of_string "PK\x03\x04"
let from file = { file = file; typ = "zip" }