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.
- {libcaes_python-20260520 → libcaes_python-20260905}/Makefile.am +3 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/Makefile.in +13 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/PKG-INFO +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/common/Makefile.in +10 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/byte_stream.h +61 -6
- {libcaes_python-20260520 → libcaes_python-20260905}/common/config.h +24 -15
- {libcaes_python-20260520 → libcaes_python-20260905}/common/config.h.in +20 -11
- {libcaes_python-20260520 → libcaes_python-20260905}/common/config_winapi.h +3 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/configure +2009 -768
- {libcaes_python-20260520 → libcaes_python-20260905}/configure.ac +18 -2
- libcaes_python-20260905/dpkg/changelog +5 -0
- libcaes_python-20260905/dpkg/compat +1 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/control +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/rules +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/include/Makefile.in +10 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/definitions.h +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/error.h +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes.h +21 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes.h.in +21 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/Makefile.in +10 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.c +4 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.rc +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_context.c +301 -12
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_context.h +12 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_definitions.h +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_extern.h +14 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_tweaked_context.c +16 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.spec +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/Makefile.in +10 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_definitions.h +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_error.c +4 -4
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_extern.h +14 -7
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_system.c +48 -66
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/common.m4 +63 -41
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/libcrypto.m4 +25 -22
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/python.m4 +19 -5
- libcaes_python-20260905/m4/tests.m4 +319 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/types.m4 +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/manuals/Makefile.am +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/manuals/Makefile.in +11 -1
- libcaes_python-20260905/manuals/libcaes.3 +188 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/Makefile.am +1 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/Makefile.in +11 -0
- libcaes_python-20260905/msvscpp/caes_test_crypt_ecb/caes_test_crypt_ecb.vcproj +210 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcaes.sln +29 -19
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/pycaes/pycaes.vcproj +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/Makefile.in +10 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/Makevars +1 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/Makefile.am +2 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/Makefile.in +12 -2
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes.c +24 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_context.c +14 -46
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_context.h +6 -3
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt.c +225 -24
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt.h +5 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_error.c +63 -36
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_tweaked_context.c +12 -44
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_tweaked_context.h +6 -3
- {libcaes_python-20260520 → libcaes_python-20260905}/pyproject.toml +6 -1
- {libcaes_python-20260520 → libcaes_python-20260905}/pyproject.toml.in +5 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/Makefile.am +90 -13
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/Makefile.in +146 -422
- libcaes_python-20260905/tests/atlocal.in +21 -0
- libcaes_python-20260905/tests/caes_test_context.c +8279 -0
- libcaes_python-20260905/tests/caes_test_crypt_cbc.c +6032 -0
- libcaes_python-20260905/tests/caes_test_crypt_ccm.c +528 -0
- libcaes_python-20260905/tests/caes_test_crypt_ecb.c +4853 -0
- libcaes_python-20260905/tests/caes_test_crypt_xts.c +13233 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_memory.c +35 -13
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_memory.h +17 -3
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_tweaked_context.c +54 -33
- libcaes_python-20260905/tests/package.m4 +5 -0
- libcaes_python-20260905/tests/pycaes_test_context.py +76 -0
- libcaes_python-20260905/tests/pycaes_test_crypt_cbc.py +7109 -0
- libcaes_python-20260905/tests/pycaes_test_crypt_ccm.py +108 -0
- libcaes_python-20260905/tests/pycaes_test_crypt_ecb.py +5933 -0
- libcaes_python-20260905/tests/pycaes_test_crypt_xts.py +8548 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/pycaes_test_support.py +21 -6
- libcaes_python-20260905/tests/pycaes_test_tweaked_context.py +80 -0
- libcaes_python-20260905/tests/test_library.at +34 -0
- libcaes_python-20260905/tests/test_macros.at +188 -0
- libcaes_python-20260905/tests/test_manpages.at +73 -0
- libcaes_python-20260905/tests/test_python_module.at +88 -0
- libcaes_python-20260520/dpkg/changelog +0 -5
- libcaes_python-20260520/dpkg/compat +0 -1
- libcaes_python-20260520/m4/tests.m4 +0 -33
- libcaes_python-20260520/manuals/libcaes.3 +0 -70
- libcaes_python-20260520/test-driver +0 -153
- libcaes_python-20260520/tests/caes_test_context.c +0 -14524
- libcaes_python-20260520/tests/caes_test_crypt_cbc.c +0 -2453
- libcaes_python-20260520/tests/caes_test_crypt_ccm.c +0 -291
- libcaes_python-20260520/tests/caes_test_crypt_xts.c +0 -3296
- libcaes_python-20260520/tests/pycaes_test_crypt_cbc.py +0 -1828
- libcaes_python-20260520/tests/pycaes_test_crypt_ccm.py +0 -108
- libcaes_python-20260520/tests/pycaes_test_crypt_ecb.py +0 -1813
- libcaes_python-20260520/tests/pycaes_test_crypt_xts.py +0 -2818
- libcaes_python-20260520/tests/test_library.sh +0 -204
- libcaes_python-20260520/tests/test_manpage.sh +0 -98
- libcaes_python-20260520/tests/test_python_module.sh +0 -196
- libcaes_python-20260520/tests/test_runner.sh +0 -1148
- {libcaes_python-20260520 → libcaes_python-20260905}/ABOUT-NLS +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/AUTHORS +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/COPYING +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/COPYING.LESSER +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ChangeLog +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/INSTALL +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/NEWS +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/README +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/_build.py +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/acinclude.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/aclocal.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/Makefile.am +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/common.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/config_borlandc.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/config_msc.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/file_stream.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/memory.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/narrow_string.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/system_string.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/types.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/types.h.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/common/wide_string.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/compile +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/config.guess +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/config.rpath +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/config.sub +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/depcomp +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/changelog.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/copyright +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes-dev.install +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes-python3.install +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/libcaes.install +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/dpkg/source/format +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/Makefile.am +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/definitions.h.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/extern.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/features.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/features.h.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/types.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/include/libcaes/types.h.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/install-sh +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/Makefile.am +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes.rc.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_definitions.h.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_error.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_error.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_libcerror.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_support.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_support.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_tweaked_context.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_types.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes/libcaes_unused.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.pc.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcaes.spec.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/Makefile.am +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_error.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_support.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_support.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_system.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_types.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/libcerror/libcerror_unused.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ltmain.sh +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/gettext.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/host-cpu-c-abi.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/iconv.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/intlmacosx.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-ld.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-link.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/lib-prefix.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/libcerror.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/libtool.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltoptions.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltsugar.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/ltversion.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/lt~obsolete.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/nls.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/po.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/m4/progtest.m4 +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/missing +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_context/caes_test_context.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_cbc/caes_test_crypt_cbc.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_ccm/caes_test_crypt_ccm.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_crypt_xts/caes_test_crypt_xts.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_error/caes_test_error.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_support/caes_test_support.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/caes_test_tweaked_context/caes_test_tweaked_context.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcaes/libcaes.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/Makefile.am +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_cbc_fuzzer.cc +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_ccm_fuzzer.cc +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_ecb_fuzzer.cc +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/crypt_xts_fuzzer.cc +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/ossfuzz/ossfuzz_libcaes.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/ChangeLog +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/Makefile.in.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/Makevars.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/POTFILES.in +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/Rules-quot +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/boldquot.sed +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/en@boldquot.header +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/en@quot.header +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/insert-header.sin +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/quot.sed +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/po/remove-potcdate.sin +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt_modes.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_crypt_modes.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_error.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_libcaes.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_libcerror.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_python.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/pycaes/pycaes_unused.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_error.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_libcaes.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_libcerror.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_macros.h +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_support.c +0 -0
- {libcaes_python-20260520 → libcaes_python-20260905}/tests/caes_test_unused.h +0 -0
|
@@ -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
|
|
|
@@ -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
|
|
33
|
-
#define
|
|
34
|
-
#define
|
|
32
|
+
#define _BYTE_STREAM_ENDIAN_BIG 'b'
|
|
33
|
+
#define _BYTE_STREAM_ENDIAN_LITTLE 'l'
|
|
34
|
+
#define _BYTE_STREAM_ENDIAN_MIDDLE 'm'
|
|
35
35
|
|
|
36
|
-
#
|
|
37
|
-
|
|
38
|
-
#
|
|
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 "
|
|
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
|
|
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 "
|
|
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 "
|
|
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
|
-
#
|
|
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
|
*/
|