libcaes-python 20260520__tar.gz → 20260905__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (219) hide show
  1. {libcaes_python-20260520 → libcaes_python-20260905}/Makefile.am +3 -0
  2. {libcaes_python-20260520 → libcaes_python-20260905}/Makefile.in +13 -0
  3. {libcaes_python-20260520 → libcaes_python-20260905}/PKG-INFO +1 -1
  4. {libcaes_python-20260520 → libcaes_python-20260905}/common/Makefile.in +10 -0
  5. {libcaes_python-20260520 → libcaes_python-20260905}/common/byte_stream.h +61 -6
  6. {libcaes_python-20260520 → libcaes_python-20260905}/common/config.h +24 -15
  7. {libcaes_python-20260520 → libcaes_python-20260905}/common/config.h.in +20 -11
  8. {libcaes_python-20260520 → libcaes_python-20260905}/common/config_winapi.h +3 -1
  9. {libcaes_python-20260520 → libcaes_python-20260905}/configure +2009 -768
  10. {libcaes_python-20260520 → libcaes_python-20260905}/configure.ac +18 -2
  11. libcaes_python-20260905/dpkg/changelog +5 -0
  12. libcaes_python-20260905/dpkg/compat +1 -0
  13. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/control +1 -1
  14. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/rules +1 -1
  15. {libcaes_python-20260520 → libcaes_python-20260905}/include/Makefile.in +10 -0
  16. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/definitions.h +2 -2
  17. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/error.h +2 -2
  18. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes.h +21 -0
  19. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes.h.in +21 -0
  20. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/Makefile.in +10 -0
  21. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.c +4 -0
  22. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.rc +2 -2
  23. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_context.c +301 -12
  24. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_context.h +12 -0
  25. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_definitions.h +2 -2
  26. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_extern.h +14 -1
  27. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_tweaked_context.c +16 -2
  28. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.spec +2 -2
  29. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/Makefile.in +10 -0
  30. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_definitions.h +2 -2
  31. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_error.c +4 -4
  32. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_extern.h +14 -7
  33. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_system.c +48 -66
  34. {libcaes_python-20260520 → libcaes_python-20260905}/m4/common.m4 +63 -41
  35. {libcaes_python-20260520 → libcaes_python-20260905}/m4/libcrypto.m4 +25 -22
  36. {libcaes_python-20260520 → libcaes_python-20260905}/m4/python.m4 +19 -5
  37. libcaes_python-20260905/m4/tests.m4 +319 -0
  38. {libcaes_python-20260520 → libcaes_python-20260905}/m4/types.m4 +1 -1
  39. {libcaes_python-20260520 → libcaes_python-20260905}/manuals/Makefile.am +1 -1
  40. {libcaes_python-20260520 → libcaes_python-20260905}/manuals/Makefile.in +11 -1
  41. libcaes_python-20260905/manuals/libcaes.3 +188 -0
  42. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/Makefile.am +1 -0
  43. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/Makefile.in +11 -0
  44. libcaes_python-20260905/msvscpp/caes_test_crypt_ecb/caes_test_crypt_ecb.vcproj +210 -0
  45. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcaes.sln +29 -19
  46. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/pycaes/pycaes.vcproj +2 -2
  47. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/Makefile.in +10 -0
  48. {libcaes_python-20260520 → libcaes_python-20260905}/po/Makevars +1 -1
  49. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/Makefile.am +2 -2
  50. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/Makefile.in +12 -2
  51. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes.c +24 -1
  52. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_context.c +14 -46
  53. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_context.h +6 -3
  54. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt.c +225 -24
  55. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt.h +5 -0
  56. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_error.c +63 -36
  57. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_tweaked_context.c +12 -44
  58. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_tweaked_context.h +6 -3
  59. {libcaes_python-20260520 → libcaes_python-20260905}/pyproject.toml +6 -1
  60. {libcaes_python-20260520 → libcaes_python-20260905}/pyproject.toml.in +5 -0
  61. {libcaes_python-20260520 → libcaes_python-20260905}/tests/Makefile.am +90 -13
  62. {libcaes_python-20260520 → libcaes_python-20260905}/tests/Makefile.in +146 -422
  63. libcaes_python-20260905/tests/atlocal.in +21 -0
  64. libcaes_python-20260905/tests/caes_test_context.c +8279 -0
  65. libcaes_python-20260905/tests/caes_test_crypt_cbc.c +6032 -0
  66. libcaes_python-20260905/tests/caes_test_crypt_ccm.c +528 -0
  67. libcaes_python-20260905/tests/caes_test_crypt_ecb.c +4853 -0
  68. libcaes_python-20260905/tests/caes_test_crypt_xts.c +13233 -0
  69. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_memory.c +35 -13
  70. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_memory.h +17 -3
  71. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_tweaked_context.c +54 -33
  72. libcaes_python-20260905/tests/package.m4 +5 -0
  73. libcaes_python-20260905/tests/pycaes_test_context.py +76 -0
  74. libcaes_python-20260905/tests/pycaes_test_crypt_cbc.py +7109 -0
  75. libcaes_python-20260905/tests/pycaes_test_crypt_ccm.py +108 -0
  76. libcaes_python-20260905/tests/pycaes_test_crypt_ecb.py +5933 -0
  77. libcaes_python-20260905/tests/pycaes_test_crypt_xts.py +8548 -0
  78. {libcaes_python-20260520 → libcaes_python-20260905}/tests/pycaes_test_support.py +21 -6
  79. libcaes_python-20260905/tests/pycaes_test_tweaked_context.py +80 -0
  80. libcaes_python-20260905/tests/test_library.at +34 -0
  81. libcaes_python-20260905/tests/test_macros.at +188 -0
  82. libcaes_python-20260905/tests/test_manpages.at +73 -0
  83. libcaes_python-20260905/tests/test_python_module.at +88 -0
  84. libcaes_python-20260520/dpkg/changelog +0 -5
  85. libcaes_python-20260520/dpkg/compat +0 -1
  86. libcaes_python-20260520/m4/tests.m4 +0 -33
  87. libcaes_python-20260520/manuals/libcaes.3 +0 -70
  88. libcaes_python-20260520/test-driver +0 -153
  89. libcaes_python-20260520/tests/caes_test_context.c +0 -14524
  90. libcaes_python-20260520/tests/caes_test_crypt_cbc.c +0 -2453
  91. libcaes_python-20260520/tests/caes_test_crypt_ccm.c +0 -291
  92. libcaes_python-20260520/tests/caes_test_crypt_xts.c +0 -3296
  93. libcaes_python-20260520/tests/pycaes_test_crypt_cbc.py +0 -1828
  94. libcaes_python-20260520/tests/pycaes_test_crypt_ccm.py +0 -108
  95. libcaes_python-20260520/tests/pycaes_test_crypt_ecb.py +0 -1813
  96. libcaes_python-20260520/tests/pycaes_test_crypt_xts.py +0 -2818
  97. libcaes_python-20260520/tests/test_library.sh +0 -204
  98. libcaes_python-20260520/tests/test_manpage.sh +0 -98
  99. libcaes_python-20260520/tests/test_python_module.sh +0 -196
  100. libcaes_python-20260520/tests/test_runner.sh +0 -1148
  101. {libcaes_python-20260520 → libcaes_python-20260905}/ABOUT-NLS +0 -0
  102. {libcaes_python-20260520 → libcaes_python-20260905}/AUTHORS +0 -0
  103. {libcaes_python-20260520 → libcaes_python-20260905}/COPYING +0 -0
  104. {libcaes_python-20260520 → libcaes_python-20260905}/COPYING.LESSER +0 -0
  105. {libcaes_python-20260520 → libcaes_python-20260905}/ChangeLog +0 -0
  106. {libcaes_python-20260520 → libcaes_python-20260905}/INSTALL +0 -0
  107. {libcaes_python-20260520 → libcaes_python-20260905}/NEWS +0 -0
  108. {libcaes_python-20260520 → libcaes_python-20260905}/README +0 -0
  109. {libcaes_python-20260520 → libcaes_python-20260905}/_build.py +0 -0
  110. {libcaes_python-20260520 → libcaes_python-20260905}/acinclude.m4 +0 -0
  111. {libcaes_python-20260520 → libcaes_python-20260905}/aclocal.m4 +0 -0
  112. {libcaes_python-20260520 → libcaes_python-20260905}/common/Makefile.am +0 -0
  113. {libcaes_python-20260520 → libcaes_python-20260905}/common/common.h +0 -0
  114. {libcaes_python-20260520 → libcaes_python-20260905}/common/config_borlandc.h +0 -0
  115. {libcaes_python-20260520 → libcaes_python-20260905}/common/config_msc.h +0 -0
  116. {libcaes_python-20260520 → libcaes_python-20260905}/common/file_stream.h +0 -0
  117. {libcaes_python-20260520 → libcaes_python-20260905}/common/memory.h +0 -0
  118. {libcaes_python-20260520 → libcaes_python-20260905}/common/narrow_string.h +0 -0
  119. {libcaes_python-20260520 → libcaes_python-20260905}/common/system_string.h +0 -0
  120. {libcaes_python-20260520 → libcaes_python-20260905}/common/types.h +0 -0
  121. {libcaes_python-20260520 → libcaes_python-20260905}/common/types.h.in +0 -0
  122. {libcaes_python-20260520 → libcaes_python-20260905}/common/wide_string.h +0 -0
  123. {libcaes_python-20260520 → libcaes_python-20260905}/compile +0 -0
  124. {libcaes_python-20260520 → libcaes_python-20260905}/config.guess +0 -0
  125. {libcaes_python-20260520 → libcaes_python-20260905}/config.rpath +0 -0
  126. {libcaes_python-20260520 → libcaes_python-20260905}/config.sub +0 -0
  127. {libcaes_python-20260520 → libcaes_python-20260905}/depcomp +0 -0
  128. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/changelog.in +0 -0
  129. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/copyright +0 -0
  130. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes-dev.install +0 -0
  131. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes-python3.install +0 -0
  132. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes.install +0 -0
  133. {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/source/format +0 -0
  134. {libcaes_python-20260520 → libcaes_python-20260905}/include/Makefile.am +0 -0
  135. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/definitions.h.in +0 -0
  136. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/extern.h +0 -0
  137. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/features.h +0 -0
  138. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/features.h.in +0 -0
  139. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/types.h +0 -0
  140. {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/types.h.in +0 -0
  141. {libcaes_python-20260520 → libcaes_python-20260905}/install-sh +0 -0
  142. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/Makefile.am +0 -0
  143. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.rc.in +0 -0
  144. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_definitions.h.in +0 -0
  145. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_error.c +0 -0
  146. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_error.h +0 -0
  147. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_libcerror.h +0 -0
  148. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_support.c +0 -0
  149. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_support.h +0 -0
  150. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_tweaked_context.h +0 -0
  151. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_types.h +0 -0
  152. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_unused.h +0 -0
  153. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.pc.in +0 -0
  154. {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.spec.in +0 -0
  155. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/Makefile.am +0 -0
  156. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_error.h +0 -0
  157. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_support.c +0 -0
  158. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_support.h +0 -0
  159. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_system.h +0 -0
  160. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_types.h +0 -0
  161. {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_unused.h +0 -0
  162. {libcaes_python-20260520 → libcaes_python-20260905}/ltmain.sh +0 -0
  163. {libcaes_python-20260520 → libcaes_python-20260905}/m4/gettext.m4 +0 -0
  164. {libcaes_python-20260520 → libcaes_python-20260905}/m4/host-cpu-c-abi.m4 +0 -0
  165. {libcaes_python-20260520 → libcaes_python-20260905}/m4/iconv.m4 +0 -0
  166. {libcaes_python-20260520 → libcaes_python-20260905}/m4/intlmacosx.m4 +0 -0
  167. {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-ld.m4 +0 -0
  168. {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-link.m4 +0 -0
  169. {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-prefix.m4 +0 -0
  170. {libcaes_python-20260520 → libcaes_python-20260905}/m4/libcerror.m4 +0 -0
  171. {libcaes_python-20260520 → libcaes_python-20260905}/m4/libtool.m4 +0 -0
  172. {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltoptions.m4 +0 -0
  173. {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltsugar.m4 +0 -0
  174. {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltversion.m4 +0 -0
  175. {libcaes_python-20260520 → libcaes_python-20260905}/m4/lt~obsolete.m4 +0 -0
  176. {libcaes_python-20260520 → libcaes_python-20260905}/m4/nls.m4 +0 -0
  177. {libcaes_python-20260520 → libcaes_python-20260905}/m4/po.m4 +0 -0
  178. {libcaes_python-20260520 → libcaes_python-20260905}/m4/progtest.m4 +0 -0
  179. {libcaes_python-20260520 → libcaes_python-20260905}/missing +0 -0
  180. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_context/caes_test_context.vcproj +0 -0
  181. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_cbc/caes_test_crypt_cbc.vcproj +0 -0
  182. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_ccm/caes_test_crypt_ccm.vcproj +0 -0
  183. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_xts/caes_test_crypt_xts.vcproj +0 -0
  184. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_error/caes_test_error.vcproj +0 -0
  185. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_support/caes_test_support.vcproj +0 -0
  186. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_tweaked_context/caes_test_tweaked_context.vcproj +0 -0
  187. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcaes/libcaes.vcproj +0 -0
  188. {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcerror/libcerror.vcproj +0 -0
  189. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/Makefile.am +0 -0
  190. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_cbc_fuzzer.cc +0 -0
  191. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_ccm_fuzzer.cc +0 -0
  192. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_ecb_fuzzer.cc +0 -0
  193. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_xts_fuzzer.cc +0 -0
  194. {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/ossfuzz_libcaes.h +0 -0
  195. {libcaes_python-20260520 → libcaes_python-20260905}/po/ChangeLog +0 -0
  196. {libcaes_python-20260520 → libcaes_python-20260905}/po/Makefile.in.in +0 -0
  197. {libcaes_python-20260520 → libcaes_python-20260905}/po/Makevars.in +0 -0
  198. {libcaes_python-20260520 → libcaes_python-20260905}/po/POTFILES.in +0 -0
  199. {libcaes_python-20260520 → libcaes_python-20260905}/po/Rules-quot +0 -0
  200. {libcaes_python-20260520 → libcaes_python-20260905}/po/boldquot.sed +0 -0
  201. {libcaes_python-20260520 → libcaes_python-20260905}/po/en@boldquot.header +0 -0
  202. {libcaes_python-20260520 → libcaes_python-20260905}/po/en@quot.header +0 -0
  203. {libcaes_python-20260520 → libcaes_python-20260905}/po/insert-header.sin +0 -0
  204. {libcaes_python-20260520 → libcaes_python-20260905}/po/quot.sed +0 -0
  205. {libcaes_python-20260520 → libcaes_python-20260905}/po/remove-potcdate.sin +0 -0
  206. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes.h +0 -0
  207. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt_modes.c +0 -0
  208. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt_modes.h +0 -0
  209. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_error.h +0 -0
  210. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_libcaes.h +0 -0
  211. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_libcerror.h +0 -0
  212. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_python.h +0 -0
  213. {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_unused.h +0 -0
  214. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_error.c +0 -0
  215. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_libcaes.h +0 -0
  216. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_libcerror.h +0 -0
  217. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_macros.h +0 -0
  218. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_support.c +0 -0
  219. {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_unused.h +0 -0
@@ -62,6 +62,9 @@ pkgconfigdir = $(libdir)/pkgconfig
62
62
  pkgconfig_DATA = \
63
63
  libcaes.pc
64
64
 
65
+ check-build: all
66
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
67
+
65
68
  libtool: @LIBTOOL_DEPS@
66
69
  cd $(srcdir) && $(SHELL) ./config.status --recheck
67
70
 
@@ -270,6 +270,7 @@ CXX = @CXX@
270
270
  CXXCPP = @CXXCPP@
271
271
  CXXDEPMODE = @CXXDEPMODE@
272
272
  CXXFLAGS = @CXXFLAGS@
273
+ CYGPATH = @CYGPATH@
273
274
  CYGPATH_W = @CYGPATH_W@
274
275
  DEFS = @DEFS@
275
276
  DEPDIR = @DEPDIR@
@@ -289,6 +290,7 @@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
289
290
  GMSGFMT = @GMSGFMT@
290
291
  GMSGFMT_015 = @GMSGFMT_015@
291
292
  GREP = @GREP@
293
+ GZIP_COMMAND = @GZIP_COMMAND@
292
294
  HAVE_DLLMAIN = @HAVE_DLLMAIN@
293
295
  HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
294
296
  HAVE_LIBCERROR = @HAVE_LIBCERROR@
@@ -333,7 +335,10 @@ LTLIBINTL = @LTLIBINTL@
333
335
  LTLIBOBJS = @LTLIBOBJS@
334
336
  LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
335
337
  MAKEINFO = @MAKEINFO@
338
+ MAN = @MAN@
339
+ MANDOC = @MANDOC@
336
340
  MANIFEST_TOOL = @MANIFEST_TOOL@
341
+ MD5SUM = @MD5SUM@
337
342
  MKDIR_P = @MKDIR_P@
338
343
  MSGFMT = @MSGFMT@
339
344
  MSGMERGE = @MSGMERGE@
@@ -372,11 +377,16 @@ SET_MAKE = @SET_MAKE@
372
377
  SHELL = @SHELL@
373
378
  SPEC_DATE = @SPEC_DATE@
374
379
  STRIP = @STRIP@
380
+ TESTS_MANPAGE_LINTER = @TESTS_MANPAGE_LINTER@
381
+ TESTS_USE_MINGW = @TESTS_USE_MINGW@
382
+ TESTS_USE_WINAPI = @TESTS_USE_WINAPI@
375
383
  USE_NLS = @USE_NLS@
376
384
  VERSION = @VERSION@
385
+ WINEPATH = @WINEPATH@
377
386
  XGETTEXT = @XGETTEXT@
378
387
  XGETTEXT_015 = @XGETTEXT_015@
379
388
  XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
389
+ ZCAT = @ZCAT@
380
390
  abs_builddir = @abs_builddir@
381
391
  abs_srcdir = @abs_srcdir@
382
392
  abs_top_builddir = @abs_top_builddir@
@@ -1031,6 +1041,9 @@ uninstall-am: uninstall-pkgconfigDATA
1031
1041
  .PRECIOUS: Makefile
1032
1042
 
1033
1043
 
1044
+ check-build: all
1045
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
1046
+
1034
1047
  libtool: @LIBTOOL_DEPS@
1035
1048
  cd $(srcdir) && $(SHELL) ./config.status --recheck
1036
1049
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libcaes-python
3
- Version: 20260520
3
+ Version: 20260905
4
4
  Summary: Python bindings for libcaes
5
5
  Maintainer-email: Joachim Metz <joachim.metz@gmail.com>
6
6
  License-Expression: LGPL-3.0-or-later
@@ -169,6 +169,7 @@ CXX = @CXX@
169
169
  CXXCPP = @CXXCPP@
170
170
  CXXDEPMODE = @CXXDEPMODE@
171
171
  CXXFLAGS = @CXXFLAGS@
172
+ CYGPATH = @CYGPATH@
172
173
  CYGPATH_W = @CYGPATH_W@
173
174
  DEFS = @DEFS@
174
175
  DEPDIR = @DEPDIR@
@@ -188,6 +189,7 @@ GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
188
189
  GMSGFMT = @GMSGFMT@
189
190
  GMSGFMT_015 = @GMSGFMT_015@
190
191
  GREP = @GREP@
192
+ GZIP_COMMAND = @GZIP_COMMAND@
191
193
  HAVE_DLLMAIN = @HAVE_DLLMAIN@
192
194
  HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
193
195
  HAVE_LIBCERROR = @HAVE_LIBCERROR@
@@ -232,7 +234,10 @@ LTLIBINTL = @LTLIBINTL@
232
234
  LTLIBOBJS = @LTLIBOBJS@
233
235
  LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
234
236
  MAKEINFO = @MAKEINFO@
237
+ MAN = @MAN@
238
+ MANDOC = @MANDOC@
235
239
  MANIFEST_TOOL = @MANIFEST_TOOL@
240
+ MD5SUM = @MD5SUM@
236
241
  MKDIR_P = @MKDIR_P@
237
242
  MSGFMT = @MSGFMT@
238
243
  MSGMERGE = @MSGMERGE@
@@ -271,11 +276,16 @@ SET_MAKE = @SET_MAKE@
271
276
  SHELL = @SHELL@
272
277
  SPEC_DATE = @SPEC_DATE@
273
278
  STRIP = @STRIP@
279
+ TESTS_MANPAGE_LINTER = @TESTS_MANPAGE_LINTER@
280
+ TESTS_USE_MINGW = @TESTS_USE_MINGW@
281
+ TESTS_USE_WINAPI = @TESTS_USE_WINAPI@
274
282
  USE_NLS = @USE_NLS@
275
283
  VERSION = @VERSION@
284
+ WINEPATH = @WINEPATH@
276
285
  XGETTEXT = @XGETTEXT@
277
286
  XGETTEXT_015 = @XGETTEXT_015@
278
287
  XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
288
+ ZCAT = @ZCAT@
279
289
  abs_builddir = @abs_builddir@
280
290
  abs_srcdir = @abs_srcdir@
281
291
  abs_top_builddir = @abs_top_builddir@
@@ -29,13 +29,68 @@
29
29
  extern "C" {
30
30
  #endif
31
31
 
32
- #define _BYTE_STREAM_HOST_IS_ENDIAN_BIG ( *((uint32_t *) "\x01\x02\x03\x04" ) == 0x01020304 )
33
- #define _BYTE_STREAM_HOST_IS_ENDIAN_LITTLE ( *((uint32_t *) "\x01\x02\x03\x04" ) == 0x04030201 )
34
- #define _BYTE_STREAM_HOST_IS_ENDIAN_MIDDLE ( *((uint32_t *) "\x01\x02\x03\x04" ) == 0x02010403 )
32
+ #define _BYTE_STREAM_ENDIAN_BIG 'b'
33
+ #define _BYTE_STREAM_ENDIAN_LITTLE 'l'
34
+ #define _BYTE_STREAM_ENDIAN_MIDDLE 'm'
35
35
 
36
- #define _BYTE_STREAM_ENDIAN_BIG (uint8_t) 'b'
37
- #define _BYTE_STREAM_ENDIAN_LITTLE (uint8_t) 'l'
38
- #define _BYTE_STREAM_ENDIAN_MIDDLE (uint8_t) 'm'
36
+ #undef _BYTE_STREAM_HOST_BYTE_ORDER
37
+
38
+ #if defined( __BYTE_ORDER__ ) && defined( __ORDER_LITTLE_ENDIAN__ ) && defined( __ORDER_BIG_ENDIAN__ ) && defined( __ORDER_PDP_ENDIAN__ )
39
+ #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
40
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_BIG
41
+
42
+ #elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
43
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_LITTLE
44
+
45
+ #elif __BYTE_ORDER__ == __ORDER_PDP_ENDIAN__
46
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_MIDDLE
47
+ #endif
48
+
49
+ #elif defined( __linux__ ) || defined( __GLIBC__ )
50
+ #include <endian.h>
51
+
52
+ #if defined( __BYTE_ORDER ) && defined( __LITTLE_ENDIAN ) && defined( __BIG_ENDIAN ) && defined( __PDP_ENDIAN )
53
+ #if __BYTE_ORDER == __BIG_ENDIAN
54
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_BIG
55
+
56
+ #elif __BYTE_ORDER == __LITTLE_ENDIAN
57
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_LITTLE
58
+
59
+ #elif __BYTE_ORDER == __PDP_ENDIAN
60
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_MIDDLE
61
+
62
+ #endif
63
+ #endif
64
+
65
+ #elif defined( __APPLE__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __NetBSD__ )
66
+ #include <machine/endian.h>
67
+
68
+ #if defined( BYTE_ORDER ) && defined( LITTLE_ENDIAN ) && defined( BIG_ENDIAN )
69
+ #if BYTE_ORDER == BIG_ENDIAN
70
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_BIG
71
+
72
+ #elif BYTE_ORDER == LITTLE_ENDIAN
73
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_LITTLE
74
+
75
+ #endif
76
+ #endif
77
+
78
+ #elif defined( _MSC_VER ) || defined( _WIN32 )
79
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_LITTLE
80
+
81
+ #elif defined( __hppa__ ) || defined( __m68k__ ) || defined( __mips__ ) || defined( __powerpc__ ) || defined( __sparc__ )
82
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_BIG
83
+
84
+ #elif defined( __i386__ ) || defined( __x86_64__ ) || defined( __arm__ ) || defined( __aarch64__ )
85
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_LITTLE
86
+
87
+ #elif defined( __pdp11__ )
88
+ #define _BYTE_STREAM_HOST_BYTE_ORDER _BYTE_STREAM_ENDIAN_MIDDLE
89
+ #endif
90
+
91
+ #if !defined( _BYTE_STREAM_HOST_BYTE_ORDER )
92
+ #error "Unable to determine host byte-order"
93
+ #endif
39
94
 
40
95
  typedef union byte_stream_float32
41
96
  {
@@ -5,12 +5,15 @@
5
5
  language is requested. */
6
6
  #define ENABLE_NLS 1
7
7
 
8
- /* Define to 1 if you have the `AES_cbc_encrypt' function". */
8
+ /* Define to 1 if you have the `AES_cbc_encrypt' function. */
9
9
  /* #undef HAVE_AES_CBC_ENCRYPT */
10
10
 
11
- /* Define to 1 if you have the `AES_ecb_encrypt' function". */
11
+ /* Define to 1 if you have the `AES_ecb_encrypt' function. */
12
12
  /* #undef HAVE_AES_ECB_ENCRYPT */
13
13
 
14
+ /* Define to 1 whether file system is case-insensitive. */
15
+ /* #undef HAVE_CASE_INSENSITIVE_FILE_SYSTEM */
16
+
14
17
  /* Define to 1 if you have the Mac OS X function
15
18
  CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
16
19
  /* #undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES */
@@ -37,25 +40,25 @@
37
40
  /* Define to 1 to enable the DllMain function. */
38
41
  /* #undef HAVE_DLLMAIN */
39
42
 
40
- /* Define to 1 if you have the `EVP_CipherInit_ex2' function". */
43
+ /* Define to 1 if you have the `EVP_CipherInit_ex2' function. */
41
44
  #define HAVE_EVP_CIPHERINIT_EX2 1
42
45
 
43
- /* Define to 1 if you have the `EVP_CIPHER_CTX_cleanup' function". */
46
+ /* Define to 1 if you have the `EVP_CIPHER_CTX_cleanup' function. */
44
47
  /* #undef HAVE_EVP_CIPHER_CTX_CLEANUP */
45
48
 
46
- /* Define to 1 if you have the `EVP_CIPHER_CTX_init' function". */
49
+ /* Define to 1 if you have the `EVP_CIPHER_CTX_init' function. */
47
50
  /* #undef HAVE_EVP_CIPHER_CTX_INIT */
48
51
 
49
52
  /* Define to 1 if you have the `EVP_aes_128_cbc', `EVP_aes_192_cbc' and
50
- `EVP_aes_256_cbc' functions". */
53
+ `EVP_aes_256_cbc' functions. */
51
54
  #define HAVE_EVP_CRYPTO_AES_CBC 1
52
55
 
53
56
  /* Define to 1 if you have the `EVP_aes_128_ecb', `EVP_aes_192_ecb' and
54
- `EVP_aes_256_ecb' functions". */
57
+ `EVP_aes_256_ecb' functions. */
55
58
  #define HAVE_EVP_CRYPTO_AES_ECB 1
56
59
 
57
60
  /* Define to 1 if you have the `EVP_aes_128_xts' and `EVP_aes_256_xts'
58
- functions". */
61
+ functions. */
59
62
  #define HAVE_EVP_CRYPTO_AES_XTS 1
60
63
 
61
64
  /* Define to 1 if you have the `fclose' function. */
@@ -70,9 +73,6 @@
70
73
  /* Define to 1 if you have the `fgetws' function. */
71
74
  #define HAVE_FGETWS 1
72
75
 
73
- /* Define to 1 if you have the `fmemopen' function. */
74
- #define HAVE_FMEMOPEN 1
75
-
76
76
  /* Define to 1 if you have the `fopen' function. */
77
77
  #define HAVE_FOPEN 1
78
78
 
@@ -148,6 +148,9 @@
148
148
  /* Define to 1 if you have the `mkstemp' function. */
149
149
  #define HAVE_MKSTEMP 1
150
150
 
151
+ /* Define to 1 if the compiler supports -fno-builtin-memcpy. */
152
+ /* #undef HAVE_NO_BUILTIN_MEMCPY */
153
+
151
154
  /* Define to 1 if you have the <openssl/aes.h> header file. */
152
155
  /* #undef HAVE_OPENSSL_AES_H */
153
156
 
@@ -163,6 +166,9 @@
163
166
  /* Define to 1 whether printf supports the conversion specifier "%zd". */
164
167
  #define HAVE_PRINTF_ZD 1
165
168
 
169
+ /* Define to 1 whether pthread_rwlock_unlock can be hooked for testing. */
170
+ #define HAVE_PTHREAD_RWLOCK_UNLOCK_HOOK 1
171
+
166
172
  /* Define to 1 if you have the <Python.h> header file. */
167
173
  /* #undef HAVE_PYTHON_H */
168
174
 
@@ -238,6 +244,9 @@
238
244
  /* Define to 1 if you have the <sys/types.h> header file. */
239
245
  #define HAVE_SYS_TYPES_H 1
240
246
 
247
+ /* Define to 1 if you have the `tmpfile' function. */
248
+ #define HAVE_TMPFILE 1
249
+
241
250
  /* Define to 1 if you have the `towlower' function. */
242
251
  #define HAVE_TOWLOWER 1
243
252
 
@@ -320,13 +329,13 @@
320
329
  #define PACKAGE "libcaes"
321
330
 
322
331
  /* Define to the address where bug reports for this package should be sent. */
323
- #define PACKAGE_BUGREPORT "joachim.metz@gmail.com"
332
+ #define PACKAGE_BUGREPORT "https://github.com/libyal/libcaes/issues"
324
333
 
325
334
  /* Define to the full name of this package. */
326
335
  #define PACKAGE_NAME "libcaes"
327
336
 
328
337
  /* Define to the full name and version of this package. */
329
- #define PACKAGE_STRING "libcaes 20260520"
338
+ #define PACKAGE_STRING "libcaes 20260905"
330
339
 
331
340
  /* Define to the one symbol short name of this package. */
332
341
  #define PACKAGE_TARNAME "libcaes"
@@ -335,7 +344,7 @@
335
344
  #define PACKAGE_URL ""
336
345
 
337
346
  /* Define to the version of this package. */
338
- #define PACKAGE_VERSION "20260520"
347
+ #define PACKAGE_VERSION "20260905"
339
348
 
340
349
  /* The size of `int', as computed by sizeof. */
341
350
  #define SIZEOF_INT 4
@@ -361,7 +370,7 @@
361
370
  /* #undef STRERROR_R_CHAR_P */
362
371
 
363
372
  /* Version number of package */
364
- #define VERSION "20260520"
373
+ #define VERSION "20260905"
365
374
 
366
375
  /* Number of bits in a file offset, on hosts where this is settable. */
367
376
  /* #undef _FILE_OFFSET_BITS */
@@ -4,12 +4,15 @@
4
4
  language is requested. */
5
5
  #undef ENABLE_NLS
6
6
 
7
- /* Define to 1 if you have the `AES_cbc_encrypt' function". */
7
+ /* Define to 1 if you have the `AES_cbc_encrypt' function. */
8
8
  #undef HAVE_AES_CBC_ENCRYPT
9
9
 
10
- /* Define to 1 if you have the `AES_ecb_encrypt' function". */
10
+ /* Define to 1 if you have the `AES_ecb_encrypt' function. */
11
11
  #undef HAVE_AES_ECB_ENCRYPT
12
12
 
13
+ /* Define to 1 whether file system is case-insensitive. */
14
+ #undef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
15
+
13
16
  /* Define to 1 if you have the Mac OS X function
14
17
  CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
15
18
  #undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES
@@ -36,25 +39,25 @@
36
39
  /* Define to 1 to enable the DllMain function. */
37
40
  #undef HAVE_DLLMAIN
38
41
 
39
- /* Define to 1 if you have the `EVP_CipherInit_ex2' function". */
42
+ /* Define to 1 if you have the `EVP_CipherInit_ex2' function. */
40
43
  #undef HAVE_EVP_CIPHERINIT_EX2
41
44
 
42
- /* Define to 1 if you have the `EVP_CIPHER_CTX_cleanup' function". */
45
+ /* Define to 1 if you have the `EVP_CIPHER_CTX_cleanup' function. */
43
46
  #undef HAVE_EVP_CIPHER_CTX_CLEANUP
44
47
 
45
- /* Define to 1 if you have the `EVP_CIPHER_CTX_init' function". */
48
+ /* Define to 1 if you have the `EVP_CIPHER_CTX_init' function. */
46
49
  #undef HAVE_EVP_CIPHER_CTX_INIT
47
50
 
48
51
  /* Define to 1 if you have the `EVP_aes_128_cbc', `EVP_aes_192_cbc' and
49
- `EVP_aes_256_cbc' functions". */
52
+ `EVP_aes_256_cbc' functions. */
50
53
  #undef HAVE_EVP_CRYPTO_AES_CBC
51
54
 
52
55
  /* Define to 1 if you have the `EVP_aes_128_ecb', `EVP_aes_192_ecb' and
53
- `EVP_aes_256_ecb' functions". */
56
+ `EVP_aes_256_ecb' functions. */
54
57
  #undef HAVE_EVP_CRYPTO_AES_ECB
55
58
 
56
59
  /* Define to 1 if you have the `EVP_aes_128_xts' and `EVP_aes_256_xts'
57
- functions". */
60
+ functions. */
58
61
  #undef HAVE_EVP_CRYPTO_AES_XTS
59
62
 
60
63
  /* Define to 1 if you have the `fclose' function. */
@@ -69,9 +72,6 @@
69
72
  /* Define to 1 if you have the `fgetws' function. */
70
73
  #undef HAVE_FGETWS
71
74
 
72
- /* Define to 1 if you have the `fmemopen' function. */
73
- #undef HAVE_FMEMOPEN
74
-
75
75
  /* Define to 1 if you have the `fopen' function. */
76
76
  #undef HAVE_FOPEN
77
77
 
@@ -147,6 +147,9 @@
147
147
  /* Define to 1 if you have the `mkstemp' function. */
148
148
  #undef HAVE_MKSTEMP
149
149
 
150
+ /* Define to 1 if the compiler supports -fno-builtin-memcpy. */
151
+ #undef HAVE_NO_BUILTIN_MEMCPY
152
+
150
153
  /* Define to 1 if you have the <openssl/aes.h> header file. */
151
154
  #undef HAVE_OPENSSL_AES_H
152
155
 
@@ -162,6 +165,9 @@
162
165
  /* Define to 1 whether printf supports the conversion specifier "%zd". */
163
166
  #undef HAVE_PRINTF_ZD
164
167
 
168
+ /* Define to 1 whether pthread_rwlock_unlock can be hooked for testing. */
169
+ #undef HAVE_PTHREAD_RWLOCK_UNLOCK_HOOK
170
+
165
171
  /* Define to 1 if you have the <Python.h> header file. */
166
172
  #undef HAVE_PYTHON_H
167
173
 
@@ -237,6 +243,9 @@
237
243
  /* Define to 1 if you have the <sys/types.h> header file. */
238
244
  #undef HAVE_SYS_TYPES_H
239
245
 
246
+ /* Define to 1 if you have the `tmpfile' function. */
247
+ #undef HAVE_TMPFILE
248
+
240
249
  /* Define to 1 if you have the `towlower' function. */
241
250
  #undef HAVE_TOWLOWER
242
251
 
@@ -36,7 +36,9 @@
36
36
 
37
37
  /* Define to the address where bug reports for this package should be sent.
38
38
  */
39
- #define PACKAGE_BUGREPORT "joachim.metz@gmail.com"
39
+ #if !defined( PACKAGE_BUGREPORT )
40
+ #define PACKAGE_BUGREPORT "https://github.com/libyal/libcaes/issues"
41
+ #endif
40
42
 
41
43
  /* Define the size of the integer for WINAPI
42
44
  */