1. 5b3237e Annotate ZIP_EXTERN for zip_secure_random. by Thomas Klausner · 6 years ago
  2. 3158663 RANODM -> RANDOM by Thomas Klausner · 6 years ago
  3. 13a33de Remove text editor temp files. by Dieter Baron · 6 years ago
  4. 9f54663 Fix usage of zip_random in zip_mkstempm when no crypto is found. by Dieter Baron · 6 years ago
  5. d4c9709 Set close-on-exec when opening files. by Thomas Klausner · 6 years ago
  6. fa7946a Explicitly ignore return value of chmod(). by Dieter Baron · 6 years ago
  7. 89f457f Simplify _zip_mkstempm(), use zip_random(). by Dieter Baron · 6 years ago
  8. a50b6ed Remove mkstemp replacement function and references from build system. by Thomas Klausner · 6 years ago
  9. 2c1358f Remove references to umask from build system. by Thomas Klausner · 6 years ago
  10. fcb31e7 Avoid using umask(), it's not thread-safe. by Thomas Klausner · 6 years ago
  11. 8ae73e0 Fix MinGW build on case-sensitive filesystems by Martin Herkt · 6 years ago
  12. 1e6b758 Add cast to avoid computations on void*. by Thomas Klausner · 6 years ago
  13. e91cc0f Bump copyright dates. by Thomas Klausner · 6 years ago
  14. 786c342 Keep file permissions when modifying zip archives. by Thomas Klausner · 6 years ago
  15. d4dfe13 Fix AES encoding in corner case. by Dieter Baron · 6 years ago
  16. 1d949dd Add nullability annotations. by Dieter Baron · 6 years ago
  17. 83581fd Fix operator precedence. by Thomas Klausner · 6 years ago
  18. 3bc5f6c Check for localtime() failure. by Thomas Klausner · 6 years ago
  19. 8e01a4f Add support for mbed TLS as crypto backend. by Thomas Klausner · 6 years ago
  20. 9d0ed1f Add option to allocate buffers on stack. by Dieter Baron · 6 years ago
  21. d02f61c Remove inconsistent zip_source_free for zero-length files by Shahms King · 6 years ago
  22. a5c1111 Put zipint.h before zip_crypto.h by Thomas Klausner · 6 years ago
  23. 812ec7e Re-format code with clang-format by Thomas Klausner · 6 years ago
  24. c8951d8 Fix some fd/memory leaks in error cases. by Thomas Klausner · 6 years ago
  25. a443cd7 win32: handle missing bcrypt for mingw by Lubomir I. Ivanov · 6 years ago
  26. 7804307 Be consistent in cryptography framework preference. by Thomas Klausner · 6 years ago
  27. 0adef8f Fix memory leak. by Thomas Klausner · 6 years ago
  28. 164097f Add Windows Cryptography support. by Thomas Klausner · 6 years ago
  29. b472e72 adding option SHARED_LIB_VERSIONNING to remove SO versionning (versionning remains ON by default) by Florian Delizy · 7 years ago
  30. 5e78288 Remove extra semicolon by Gabriel Caruso · 7 years ago
  31. d90df6c When converting from CP437 to UTF-8, translate '0' to '0'. by Thomas Klausner · 7 years ago
  32. 6cf9de8 zip_source_seek: fix EOF status after successful seek. by Thomas Klausner · 7 years ago
  33. 4cd3c60 cmake: search libzip source path before other include paths. by Thomas Klausner · 7 years ago
  34. 9021701 cmake: add visibility handling by Thomas Klausner · 7 years ago
  35. ac2fd0d Merge pull request #37 from HeeMyung/master by Dieter Baron · 7 years ago
  36. 50155dd Read from correct buffer by Richard Schütz · 7 years ago
  37. d6b4a1c Fix not increment buffer fragment indexer by HeeM · 7 years ago
  38. b30cf7b Fix build with LibreSSL by Dieter Baron · 7 years ago
  39. cef695f Don’t check multiple inclusion guard before including file. by Dieter Baron · 7 years ago
  40. 3b6d360 Don't dllexport functions when building static lib by Michał Janiszewski · 7 years ago
  41. c048fed Unify zip_random declarations by Michał Janiszewski · 7 years ago
  42. e1355c8 Don't redefine WINNT version by Michał Janiszewski · 7 years ago
  43. e3ea44e free fragment_offsets by Dieter Baron · 7 years ago
  44. da9477f Fix memory leak found by clang’s static analyzer. by Dieter Baron · 7 years ago
  45. 2d4f139 Merge branch 'master' of https://github.com/nih-at/libzip by Dieter Baron · 7 years ago
  46. 683e126 Fix typo. by Thomas Klausner · 7 years ago
  47. cee1f2a Remove zip_random implementations from build. by Dieter Baron · 7 years ago
  48. 5405cc4 Proper error handling. by Dieter Baron · 7 years ago
  49. 618a248 Support OpenSSL 1.1. by Thomas Klausner · 7 years ago
  50. 29ca480 Add support for Apple’s CommonCrypto library. by Dieter Baron · 7 years ago
  51. 031edeb Rework crypto library abstraction, add GnuTLS support. by Dieter Baron · 7 years ago
  52. 11aec22 Rename hmac to zip_hmac to fix conflicts with NetBSD libc. by Thomas Klausner · 7 years ago
  53. 303fde9 Completely switch to OpenSSL for AES support. by Thomas Klausner · 7 years ago
  54. 90ebefe Remove unused files. by Thomas Klausner · 7 years ago
  55. d95a280 Use openssl's PKCS5_PBKDF2_HMAC_SHA1 to derive key from password. by Thomas Klausner · 7 years ago
  56. 408ea08 Use openssl's AES functions. Remove some unused files. by Thomas Klausner · 7 years ago
  57. 4f05eaf Finish conversion to openssl's hmac function. by Thomas Klausner · 7 years ago
  58. d6f2362 Provide SHA1-sized buffers for HMAC functions. by Thomas Klausner · 7 years ago
  59. 902b953 Don't call ZIP_SOURCE_COMMAND_READ with length 0. by Thomas Klausner · 7 years ago
  60. 6eb844d Include stdlib.h for malloc(). by Thomas Klausner · 7 years ago
  61. 43f1588 Use openssl's HMAC functions in pwd2key.c. by Thomas Klausner · 7 years ago
  62. e6c839c Convert pwd2key.c to use gnutls' HMAC function. by Thomas Klausner · 7 years ago
  63. 7bddbcd Mark zip_random as extern. by Thomas Klausner · 7 years ago
  64. da5d56a Fix indentation of comment. by Thomas Klausner · 7 years ago
  65. 53b9585 FICLONERANGE needs truncate too. by Dieter Baron · 7 years ago
  66. 8eab1a2 Format using clang-format. by Thomas Klausner · 7 years ago
  67. 0f9025b More clang-format comments. by Thomas Klausner · 7 years ago
  68. 6e4dacf Add clang-format comments. by Thomas Klausner · 7 years ago
  69. bf8654e Add support for clonging via Linux ioctl FICLONERANGE. by Dieter Baron · 7 years ago
  70. 84072ae Only compile zip_algorithm_bzip2.c when bzip2 was found. by Thomas Klausner · 7 years ago
  71. edbd188 Include wincrypt.h for HCRYPTPROV. by Thomas Klausner · 7 years ago
  72. 8176bf0 Include stdlib.h for malloc(). by Thomas Klausner · 7 years ago
  73. 814ca95 _zip_error_copy(): handle NULL destination. by Dieter Baron · 7 years ago
  74. 42a3c4a Use GNUInstallDirs variables to allow installation customization. by Thomas Klausner · 7 years ago
  75. 9ddce28 Merge pull request #18 from carl-mastrangelo/unused by Thomas Klausner · 7 years ago
  76. 61e686c Remove trailing Makefile.am. by Thomas Klausner · 7 years ago
  77. 025f6e4 Don't use `unused` in aescrypt macro by Carl Mastrangelo · 7 years ago
  78. 6690ce2 Add more comments about replacements for deprecated functions to zip.h by Thomas Klausner · 7 years ago
  79. 8609c9c Fix logic determining which stat members are known / valid. by Dieter Baron · 7 years ago
  80. 2db8ea7 Add support for Microsoft Universal Windows Platform. by Michał Janiszewski · 7 years ago
  81. e3e5573 Fix size calculation (missing parenthesis). by Dieter Baron · 7 years ago
  82. c36a6f4 Update copyright years. by Thomas Klausner · 7 years ago
  83. 54d2eb5 Only fail zip_source_read if a previous error occured during read. by Dieter Baron · 7 years ago
  84. d28f747 Add support for cloning on Apple File System. by Dieter Baron · 7 years ago
  85. 7b41bed Remove debug define. by Dieter Baron · 7 years ago
  86. 5caa9c9 Implement support for cloning. by Dieter Baron · 7 years ago
  87. 48f6d55 Fix typo in variable name. by Thomas Klausner · 7 years ago
  88. 39fa681 Mark variable used. by Thomas Klausner · 7 years ago
  89. 983d3a9 Add zip_source_buffer_fragment. by Dieter Baron · 7 years ago
  90. 5418fc0 More Xcode warning fixes. by Dieter Baron · 7 years ago
  91. 998bd0e Retire autoconf/automake build system. by Thomas Klausner · 7 years ago
  92. 7df1f97 cmake: some cleanup; add two more custom targets. by Thomas Klausner · 7 years ago
  93. 00d840d cmake: make library version number match up with autotools build by Thomas Klausner · 7 years ago
  94. 6b1e8de Define ZIP_STATIC in zipconf.h when building a static library (with cmake). by Thomas Klausner · 7 years ago
  95. d038c7b Don't call memcmp to compare 0 bytes. by Dieter Baron · 7 years ago
  96. f8ef1a2 Do not discard za in case of error. by Dieter Baron · 7 years ago
  97. d0498c3 Fix leak of source if zip_source_commit_write() fails. by Dieter Baron · 7 years ago
  98. 24febf1 regen by Thomas Klausner · 7 years ago
  99. 4518fec zip.h: remove trailing whitespace by Thomas Klausner · 7 years ago
  100. b8077fd Add zip_libzip_version() to return binary version of library. by Thomas Klausner · 7 years ago