zipcloak.txt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. zipcloak(1) zipcloak(1)
  2. NAME
  3. zipcloak - encrypt entries in a zipfile
  4. SYNOPSIS
  5. zipcloak [-d] [-b path] [-h] [-v] [-L] zipfile
  6. ARGUMENTS
  7. zipfile Zipfile to encrypt entries in
  8. OPTIONS
  9. -b path
  10. --temp-path path
  11. Use the directory given by path for the temporary zip file.
  12. -d
  13. --decrypt
  14. Decrypt encrypted entries (copy if given wrong password).
  15. -h
  16. --help
  17. Show a short help.
  18. -L
  19. --license
  20. Show software license.
  21. -O path
  22. --output-file zipfile
  23. Write output to new archive zipfile, leaving original archive as
  24. is.
  25. -q
  26. --quiet
  27. Quiet operation. Suppresses some informational messages.
  28. -v
  29. --version
  30. Show version information.
  31. DESCRIPTION
  32. zipcloak encrypts all unencrypted entries in the zipfile. This is the
  33. default action.
  34. The -d option is used to decrypt encrypted entries in the zipfile.
  35. zipcloak uses original zip encryption which is considered weak.
  36. Note: The encryption code of this program is not copyrighted and is
  37. put in the public domain. It was originally written in Europe
  38. and can be freely distributed from any country including the
  39. U.S.A. (Previously if this program was imported into the U.S.A,
  40. it could not be re-exported from the U.S.A to another country.)
  41. See the file README.CR included in the source distribution for
  42. more on this. Otherwise, the Info-ZIP license applies.
  43. EXAMPLES
  44. To be added.
  45. BUGS
  46. Large files (> 2 GB) and large archives not yet supported.
  47. Split archives not yet supported. A work around is to convert the
  48. split archive to a single-file archive using zip and then use zipcloak
  49. on the single-file archive. If needed, the resulting archive can then
  50. be split again using zip.
  51. SEE ALSO
  52. zip(1), unzip(1)
  53. AUTHOR
  54. Info-ZIP
  55. v3.0 of 8 May 2008 zipcloak(1)