├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── 3rdparty ├── crc32c_adler │ ├── README │ ├── crc32c_adler.c │ ├── crc32c_adler.h │ ├── example-dht.c │ └── example-stdin.c ├── libmaxminddb │ ├── CMakeLists.txt │ ├── data-pool.c │ ├── data-pool.h │ ├── maxminddb-compat-util.h │ ├── maxminddb.c │ ├── maxminddb.h │ ├── maxminddb_config.h │ └── mmdblookup.c ├── libzip │ ├── .clang-format │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug-report.md │ │ │ ├── compile-error.md │ │ │ └── feature-request.md │ │ └── workflows │ │ │ ├── build.yml │ │ │ ├── codeql-analysis.yml │ │ │ └── main.yml │ ├── API-CHANGES.md │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── INSTALL.md │ ├── LICENSE │ ├── NEWS.md │ ├── README.md │ ├── THANKS │ ├── TODO.md │ ├── android │ │ ├── do.sh │ │ ├── docker │ │ │ └── Dockerfile │ │ └── readme.txt │ ├── appveyor.yml │ ├── cmake-compat │ │ ├── CMakePushCheckState.cmake │ │ ├── CheckLibraryExists.cmake │ │ ├── CheckSymbolExists.cmake │ │ ├── FindBZip2.cmake │ │ ├── FindGnuTLS.cmake │ │ ├── FindLibLZMA.cmake │ │ ├── FindPackageHandleStandardArgs.cmake │ │ ├── FindPackageMessage.cmake │ │ └── SelectLibraryConfigurations.cmake │ ├── cmake-config.h.in │ ├── cmake-zipconf.h.in │ ├── cmake │ │ ├── Dist.cmake │ │ ├── FindMbedTLS.cmake │ │ ├── FindNettle.cmake │ │ └── FindZstd.cmake │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── in-memory.c │ │ └── windows-open.c │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── compat.h │ │ ├── zip.h │ │ ├── zip_add.c │ │ ├── zip_add_dir.c │ │ ├── zip_add_entry.c │ │ ├── zip_algorithm_bzip2.c │ │ ├── zip_algorithm_deflate.c │ │ ├── zip_algorithm_xz.c │ │ ├── zip_algorithm_zstd.c │ │ ├── zip_buffer.c │ │ ├── zip_close.c │ │ ├── zip_crypto.h │ │ ├── zip_crypto_commoncrypto.c │ │ ├── zip_crypto_commoncrypto.h │ │ ├── zip_crypto_gnutls.c │ │ ├── zip_crypto_gnutls.h │ │ ├── zip_crypto_mbedtls.c │ │ ├── zip_crypto_mbedtls.h │ │ ├── zip_crypto_openssl.c │ │ ├── zip_crypto_openssl.h │ │ ├── zip_crypto_win.c │ │ ├── zip_crypto_win.h │ │ ├── zip_delete.c │ │ ├── zip_dir_add.c │ │ ├── zip_dirent.c │ │ ├── zip_discard.c │ │ ├── zip_entry.c │ │ ├── zip_error.c │ │ ├── zip_error_clear.c │ │ ├── zip_error_get.c │ │ ├── zip_error_get_sys_type.c │ │ ├── zip_error_strerror.c │ │ ├── zip_error_to_str.c │ │ ├── zip_extra_field.c │ │ ├── zip_extra_field_api.c │ │ ├── zip_fclose.c │ │ ├── zip_fdopen.c │ │ ├── zip_file_add.c │ │ ├── zip_file_error_clear.c │ │ ├── zip_file_error_get.c │ │ ├── zip_file_get_comment.c │ │ ├── zip_file_get_external_attributes.c │ │ ├── zip_file_get_offset.c │ │ ├── zip_file_rename.c │ │ ├── zip_file_replace.c │ │ ├── zip_file_set_comment.c │ │ ├── zip_file_set_encryption.c │ │ ├── zip_file_set_external_attributes.c │ │ ├── zip_file_set_mtime.c │ │ ├── zip_file_strerror.c │ │ ├── zip_fopen.c │ │ ├── zip_fopen_encrypted.c │ │ ├── zip_fopen_index.c │ │ ├── zip_fopen_index_encrypted.c │ │ ├── zip_fread.c │ │ ├── zip_fseek.c │ │ ├── zip_ftell.c │ │ ├── zip_get_archive_comment.c │ │ ├── zip_get_archive_flag.c │ │ ├── zip_get_encryption_implementation.c │ │ ├── zip_get_file_comment.c │ │ ├── zip_get_name.c │ │ ├── zip_get_num_entries.c │ │ ├── zip_get_num_files.c │ │ ├── zip_hash.c │ │ ├── zip_io_util.c │ │ ├── zip_libzip_version.c │ │ ├── zip_memdup.c │ │ ├── zip_mkstempm.c │ │ ├── zip_name_locate.c │ │ ├── zip_new.c │ │ ├── zip_open.c │ │ ├── zip_pkware.c │ │ ├── zip_progress.c │ │ ├── zip_random_unix.c │ │ ├── zip_random_uwp.c │ │ ├── zip_random_win32.c │ │ ├── zip_rename.c │ │ ├── zip_replace.c │ │ ├── zip_set_archive_comment.c │ │ ├── zip_set_archive_flag.c │ │ ├── zip_set_default_password.c │ │ ├── zip_set_file_comment.c │ │ ├── zip_set_file_compression.c │ │ ├── zip_set_name.c │ │ ├── zip_source_accept_empty.c │ │ ├── zip_source_begin_write.c │ │ ├── zip_source_begin_write_cloning.c │ │ ├── zip_source_buffer.c │ │ ├── zip_source_call.c │ │ ├── zip_source_close.c │ │ ├── zip_source_commit_write.c │ │ ├── zip_source_compress.c │ │ ├── zip_source_crc.c │ │ ├── zip_source_error.c │ │ ├── zip_source_file.h │ │ ├── zip_source_file_common.c │ │ ├── zip_source_file_stdio.c │ │ ├── zip_source_file_stdio.h │ │ ├── zip_source_file_stdio_named.c │ │ ├── zip_source_file_win32.c │ │ ├── zip_source_file_win32.h │ │ ├── zip_source_file_win32_ansi.c │ │ ├── zip_source_file_win32_named.c │ │ ├── zip_source_file_win32_utf16.c │ │ ├── zip_source_file_win32_utf8.c │ │ ├── zip_source_free.c │ │ ├── zip_source_function.c │ │ ├── zip_source_get_file_attributes.c │ │ ├── zip_source_is_deleted.c │ │ ├── zip_source_layered.c │ │ ├── zip_source_open.c │ │ ├── zip_source_pkware_decode.c │ │ ├── zip_source_pkware_encode.c │ │ ├── zip_source_read.c │ │ ├── zip_source_remove.c │ │ ├── zip_source_rollback_write.c │ │ ├── zip_source_seek.c │ │ ├── zip_source_seek_write.c │ │ ├── zip_source_stat.c │ │ ├── zip_source_supports.c │ │ ├── zip_source_tell.c │ │ ├── zip_source_tell_write.c │ │ ├── zip_source_window.c │ │ ├── zip_source_winzip_aes_decode.c │ │ ├── zip_source_winzip_aes_encode.c │ │ ├── zip_source_write.c │ │ ├── zip_source_zip.c │ │ ├── zip_source_zip_new.c │ │ ├── zip_stat.c │ │ ├── zip_stat_index.c │ │ ├── zip_stat_init.c │ │ ├── zip_strerror.c │ │ ├── zip_string.c │ │ ├── zip_unchange.c │ │ ├── zip_unchange_all.c │ │ ├── zip_unchange_archive.c │ │ ├── zip_unchange_data.c │ │ ├── zip_utf-8.c │ │ ├── zip_winzip_aes.c │ │ └── zipint.h │ ├── libzip-config.cmake.in │ ├── libzip.pc.in │ ├── man │ │ ├── CMakeLists.txt │ │ ├── ZIP_SOURCE_GET_ARGS.html │ │ ├── ZIP_SOURCE_GET_ARGS.man │ │ ├── ZIP_SOURCE_GET_ARGS.mdoc │ │ ├── handle_links │ │ ├── libzip.html │ │ ├── libzip.man │ │ ├── libzip.mdoc │ │ ├── links │ │ ├── update-html.cmake │ │ ├── update-man.cmake │ │ ├── zip_add.html │ │ ├── zip_add.man │ │ ├── zip_add.mdoc │ │ ├── zip_add_dir.html │ │ ├── zip_add_dir.man │ │ ├── zip_add_dir.mdoc │ │ ├── zip_close.html │ │ ├── zip_close.man │ │ ├── zip_close.mdoc │ │ ├── zip_compression_method_supported.html │ │ ├── zip_compression_method_supported.man │ │ ├── zip_compression_method_supported.mdoc │ │ ├── zip_delete.html │ │ ├── zip_delete.man │ │ ├── zip_delete.mdoc │ │ ├── zip_dir_add.html │ │ ├── zip_dir_add.man │ │ ├── zip_dir_add.mdoc │ │ ├── zip_discard.html │ │ ├── zip_discard.man │ │ ├── zip_discard.mdoc │ │ ├── zip_encryption_method_supported.html │ │ ├── zip_encryption_method_supported.man │ │ ├── zip_encryption_method_supported.mdoc │ │ ├── zip_error_clear.html │ │ ├── zip_error_clear.man │ │ ├── zip_error_clear.mdoc │ │ ├── zip_error_code_system.html │ │ ├── zip_error_code_system.man │ │ ├── zip_error_code_system.mdoc │ │ ├── zip_error_code_zip.html │ │ ├── zip_error_code_zip.man │ │ ├── zip_error_code_zip.mdoc │ │ ├── zip_error_fini.html │ │ ├── zip_error_fini.man │ │ ├── zip_error_fini.mdoc │ │ ├── zip_error_get.html │ │ ├── zip_error_get.man │ │ ├── zip_error_get.mdoc │ │ ├── zip_error_get_sys_type.html │ │ ├── zip_error_get_sys_type.man │ │ ├── zip_error_get_sys_type.mdoc │ │ ├── zip_error_init.html │ │ ├── zip_error_init.man │ │ ├── zip_error_init.mdoc │ │ ├── zip_error_set.html │ │ ├── zip_error_set.man │ │ ├── zip_error_set.mdoc │ │ ├── zip_error_strerror.html │ │ ├── zip_error_strerror.man │ │ ├── zip_error_strerror.mdoc │ │ ├── zip_error_system_type.html │ │ ├── zip_error_system_type.man │ │ ├── zip_error_system_type.mdoc │ │ ├── zip_error_to_data.html │ │ ├── zip_error_to_data.man │ │ ├── zip_error_to_data.mdoc │ │ ├── zip_error_to_str.html │ │ ├── zip_error_to_str.man │ │ ├── zip_error_to_str.mdoc │ │ ├── zip_errors.html │ │ ├── zip_errors.man │ │ ├── zip_errors.mdoc │ │ ├── zip_fclose.html │ │ ├── zip_fclose.man │ │ ├── zip_fclose.mdoc │ │ ├── zip_fdopen.html │ │ ├── zip_fdopen.man │ │ ├── zip_fdopen.mdoc │ │ ├── zip_file_add.html │ │ ├── zip_file_add.man │ │ ├── zip_file_add.mdoc │ │ ├── zip_file_attributes_init.html │ │ ├── zip_file_attributes_init.man │ │ ├── zip_file_attributes_init.mdoc │ │ ├── zip_file_extra_field_delete.html │ │ ├── zip_file_extra_field_delete.man │ │ ├── zip_file_extra_field_delete.mdoc │ │ ├── zip_file_extra_field_get.html │ │ ├── zip_file_extra_field_get.man │ │ ├── zip_file_extra_field_get.mdoc │ │ ├── zip_file_extra_field_set.html │ │ ├── zip_file_extra_field_set.man │ │ ├── zip_file_extra_field_set.mdoc │ │ ├── zip_file_extra_fields_count.html │ │ ├── zip_file_extra_fields_count.man │ │ ├── zip_file_extra_fields_count.mdoc │ │ ├── zip_file_get_comment.html │ │ ├── zip_file_get_comment.man │ │ ├── zip_file_get_comment.mdoc │ │ ├── zip_file_get_error.html │ │ ├── zip_file_get_error.man │ │ ├── zip_file_get_error.mdoc │ │ ├── zip_file_get_external_attributes.html │ │ ├── zip_file_get_external_attributes.man │ │ ├── zip_file_get_external_attributes.mdoc │ │ ├── zip_file_rename.html │ │ ├── zip_file_rename.man │ │ ├── zip_file_rename.mdoc │ │ ├── zip_file_set_comment.html │ │ ├── zip_file_set_comment.man │ │ ├── zip_file_set_comment.mdoc │ │ ├── zip_file_set_encryption.html │ │ ├── zip_file_set_encryption.man │ │ ├── zip_file_set_encryption.mdoc │ │ ├── zip_file_set_external_attributes.html │ │ ├── zip_file_set_external_attributes.man │ │ ├── zip_file_set_external_attributes.mdoc │ │ ├── zip_file_set_mtime.html │ │ ├── zip_file_set_mtime.man │ │ ├── zip_file_set_mtime.mdoc │ │ ├── zip_file_strerror.html │ │ ├── zip_file_strerror.man │ │ ├── zip_file_strerror.mdoc │ │ ├── zip_fopen.html │ │ ├── zip_fopen.man │ │ ├── zip_fopen.mdoc │ │ ├── zip_fopen_encrypted.html │ │ ├── zip_fopen_encrypted.man │ │ ├── zip_fopen_encrypted.mdoc │ │ ├── zip_fread.html │ │ ├── zip_fread.man │ │ ├── zip_fread.mdoc │ │ ├── zip_fseek.html │ │ ├── zip_fseek.man │ │ ├── zip_fseek.mdoc │ │ ├── zip_ftell.html │ │ ├── zip_ftell.man │ │ ├── zip_ftell.mdoc │ │ ├── zip_get_archive_comment.html │ │ ├── zip_get_archive_comment.man │ │ ├── zip_get_archive_comment.mdoc │ │ ├── zip_get_archive_flag.html │ │ ├── zip_get_archive_flag.man │ │ ├── zip_get_archive_flag.mdoc │ │ ├── zip_get_error.html │ │ ├── zip_get_error.man │ │ ├── zip_get_error.mdoc │ │ ├── zip_get_file_comment.html │ │ ├── zip_get_file_comment.man │ │ ├── zip_get_file_comment.mdoc │ │ ├── zip_get_name.html │ │ ├── zip_get_name.man │ │ ├── zip_get_name.mdoc │ │ ├── zip_get_num_entries.html │ │ ├── zip_get_num_entries.man │ │ ├── zip_get_num_entries.mdoc │ │ ├── zip_get_num_files.html │ │ ├── zip_get_num_files.man │ │ ├── zip_get_num_files.mdoc │ │ ├── zip_libzip_version.html │ │ ├── zip_libzip_version.man │ │ ├── zip_libzip_version.mdoc │ │ ├── zip_name_locate.html │ │ ├── zip_name_locate.man │ │ ├── zip_name_locate.mdoc │ │ ├── zip_open.html │ │ ├── zip_open.man │ │ ├── zip_open.mdoc │ │ ├── zip_register_cancel_callback_with_state.html │ │ ├── zip_register_cancel_callback_with_state.man │ │ ├── zip_register_cancel_callback_with_state.mdoc │ │ ├── zip_register_progress_callback.html │ │ ├── zip_register_progress_callback.man │ │ ├── zip_register_progress_callback.mdoc │ │ ├── zip_register_progress_callback_with_state.html │ │ ├── zip_register_progress_callback_with_state.man │ │ ├── zip_register_progress_callback_with_state.mdoc │ │ ├── zip_rename.html │ │ ├── zip_rename.man │ │ ├── zip_rename.mdoc │ │ ├── zip_set_archive_comment.html │ │ ├── zip_set_archive_comment.man │ │ ├── zip_set_archive_comment.mdoc │ │ ├── zip_set_archive_flag.html │ │ ├── zip_set_archive_flag.man │ │ ├── zip_set_archive_flag.mdoc │ │ ├── zip_set_default_password.html │ │ ├── zip_set_default_password.man │ │ ├── zip_set_default_password.mdoc │ │ ├── zip_set_file_comment.html │ │ ├── zip_set_file_comment.man │ │ ├── zip_set_file_comment.mdoc │ │ ├── zip_set_file_compression.html │ │ ├── zip_set_file_compression.man │ │ ├── zip_set_file_compression.mdoc │ │ ├── zip_source.html │ │ ├── zip_source.man │ │ ├── zip_source.mdoc │ │ ├── zip_source_begin_write.html │ │ ├── zip_source_begin_write.man │ │ ├── zip_source_begin_write.mdoc │ │ ├── zip_source_buffer.html │ │ ├── zip_source_buffer.man │ │ ├── zip_source_buffer.mdoc │ │ ├── zip_source_buffer_fragment.html │ │ ├── zip_source_buffer_fragment.man │ │ ├── zip_source_buffer_fragment.mdoc │ │ ├── zip_source_close.html │ │ ├── zip_source_close.man │ │ ├── zip_source_close.mdoc │ │ ├── zip_source_commit_write.html │ │ ├── zip_source_commit_write.man │ │ ├── zip_source_commit_write.mdoc │ │ ├── zip_source_error.html │ │ ├── zip_source_error.man │ │ ├── zip_source_error.mdoc │ │ ├── zip_source_file.html │ │ ├── zip_source_file.man │ │ ├── zip_source_file.mdoc │ │ ├── zip_source_filep.html │ │ ├── zip_source_filep.man │ │ ├── zip_source_filep.mdoc │ │ ├── zip_source_free.html │ │ ├── zip_source_free.man │ │ ├── zip_source_free.mdoc │ │ ├── zip_source_function.html │ │ ├── zip_source_function.man │ │ ├── zip_source_function.mdoc │ │ ├── zip_source_is_deleted.html │ │ ├── zip_source_is_deleted.man │ │ ├── zip_source_is_deleted.mdoc │ │ ├── zip_source_keep.html │ │ ├── zip_source_keep.man │ │ ├── zip_source_keep.mdoc │ │ ├── zip_source_make_command_bitmap.html │ │ ├── zip_source_make_command_bitmap.man │ │ ├── zip_source_make_command_bitmap.mdoc │ │ ├── zip_source_open.html │ │ ├── zip_source_open.man │ │ ├── zip_source_open.mdoc │ │ ├── zip_source_read.html │ │ ├── zip_source_read.man │ │ ├── zip_source_read.mdoc │ │ ├── zip_source_rollback_write.html │ │ ├── zip_source_rollback_write.man │ │ ├── zip_source_rollback_write.mdoc │ │ ├── zip_source_seek.html │ │ ├── zip_source_seek.man │ │ ├── zip_source_seek.mdoc │ │ ├── zip_source_seek_compute_offset.html │ │ ├── zip_source_seek_compute_offset.man │ │ ├── zip_source_seek_compute_offset.mdoc │ │ ├── zip_source_seek_write.html │ │ ├── zip_source_seek_write.man │ │ ├── zip_source_seek_write.mdoc │ │ ├── zip_source_stat.html │ │ ├── zip_source_stat.man │ │ ├── zip_source_stat.mdoc │ │ ├── zip_source_tell.html │ │ ├── zip_source_tell.man │ │ ├── zip_source_tell.mdoc │ │ ├── zip_source_tell_write.html │ │ ├── zip_source_tell_write.man │ │ ├── zip_source_tell_write.mdoc │ │ ├── zip_source_win32a.html │ │ ├── zip_source_win32a.man │ │ ├── zip_source_win32a.mdoc │ │ ├── zip_source_win32handle.html │ │ ├── zip_source_win32handle.man │ │ ├── zip_source_win32handle.mdoc │ │ ├── zip_source_win32w.html │ │ ├── zip_source_win32w.man │ │ ├── zip_source_win32w.mdoc │ │ ├── zip_source_window.html │ │ ├── zip_source_window.man │ │ ├── zip_source_window.mdoc │ │ ├── zip_source_write.html │ │ ├── zip_source_write.man │ │ ├── zip_source_write.mdoc │ │ ├── zip_source_zip.html │ │ ├── zip_source_zip.man │ │ ├── zip_source_zip.mdoc │ │ ├── zip_stat.html │ │ ├── zip_stat.man │ │ ├── zip_stat.mdoc │ │ ├── zip_stat_init.html │ │ ├── zip_stat_init.man │ │ ├── zip_stat_init.mdoc │ │ ├── zip_unchange.html │ │ ├── zip_unchange.man │ │ ├── zip_unchange.mdoc │ │ ├── zip_unchange_all.html │ │ ├── zip_unchange_all.man │ │ ├── zip_unchange_all.mdoc │ │ ├── zip_unchange_archive.html │ │ ├── zip_unchange_archive.man │ │ ├── zip_unchange_archive.mdoc │ │ ├── zipcmp.html │ │ ├── zipcmp.man │ │ ├── zipcmp.mdoc │ │ ├── zipmerge.html │ │ ├── zipmerge.man │ │ ├── zipmerge.mdoc │ │ ├── ziptool.html │ │ ├── ziptool.man │ │ └── ziptool.mdoc │ ├── regress │ │ ├── CMakeLists.txt │ │ ├── NiHTest.pm │ │ ├── add_dir.test │ │ ├── add_from_buffer.test │ │ ├── add_from_file.test │ │ ├── add_from_file_duplicate.test │ │ ├── add_from_file_twice_duplicate.test │ │ ├── add_from_file_unchange.test │ │ ├── add_from_filep.c │ │ ├── add_from_filep.test │ │ ├── add_from_stdin.test │ │ ├── add_from_zip_closed.test │ │ ├── add_from_zip_deflated.test │ │ ├── add_from_zip_deflated2.test │ │ ├── add_from_zip_partial_deflated.test │ │ ├── add_from_zip_partial_stored.test │ │ ├── add_from_zip_stored.test │ │ ├── add_stored.test │ │ ├── add_stored_in_memory.test │ │ ├── bigstored.zh │ │ ├── bigzero-zip.zip │ │ ├── bogus.zip │ │ ├── broken.zip │ │ ├── buffer-fragment-read.test │ │ ├── buffer-fragment-write.test │ │ ├── can_clone_file.c │ │ ├── cancel_45.test │ │ ├── cancel_90.test │ │ ├── cleanup.cmake │ │ ├── clone-buffer-add.test │ │ ├── clone-buffer-delete.test │ │ ├── clone-buffer-replace.test │ │ ├── clone-fs-add.test │ │ ├── clone-fs-delete.test │ │ ├── clone-fs-replace.test │ │ ├── cm-default.test │ │ ├── cm-default.zip │ │ ├── count_entries.test │ │ ├── decrypt-correct-password-aes128.test │ │ ├── decrypt-correct-password-aes192.test │ │ ├── decrypt-correct-password-aes256.test │ │ ├── decrypt-correct-password-pkware-2.test │ │ ├── decrypt-correct-password-pkware.test │ │ ├── decrypt-no-password-aes256.test │ │ ├── decrypt-wrong-password-aes128.test │ │ ├── decrypt-wrong-password-aes192.test │ │ ├── decrypt-wrong-password-aes256.test │ │ ├── decrypt-wrong-password-pkware-2.test │ │ ├── decrypt-wrong-password-pkware.test │ │ ├── delete_add_same.test │ │ ├── delete_invalid.test │ │ ├── delete_last.test │ │ ├── delete_multiple_last.test │ │ ├── delete_multiple_partial.test │ │ ├── delete_renamed_rename.test │ │ ├── encrypt-1234.zip │ │ ├── encrypt-aes128-noentropy.zip │ │ ├── encrypt-aes128.zip │ │ ├── encrypt-aes192-noentropy.zip │ │ ├── encrypt-aes192.zip │ │ ├── encrypt-aes256-noentropy.zip │ │ ├── encrypt-aes256.zip │ │ ├── encrypt-none.zip │ │ ├── encrypt-pkware-noentropy.zip │ │ ├── encrypt.test │ │ ├── encrypt.zip │ │ ├── encrypt_plus_extra.zip │ │ ├── encrypt_plus_extra_modified_c.zip │ │ ├── encrypt_plus_extra_modified_l.zip │ │ ├── encryption-nonrandom-aes128.test │ │ ├── encryption-nonrandom-aes192.test │ │ ├── encryption-nonrandom-aes256.test │ │ ├── encryption-nonrandom-pkware.test │ │ ├── encryption-remove.test │ │ ├── encryption-stat.test │ │ ├── extra_add.test │ │ ├── extra_add_multiple.test │ │ ├── extra_count.test │ │ ├── extra_count_by_id.test │ │ ├── extra_count_ignore_zip64.test │ │ ├── extra_delete.test │ │ ├── extra_delete_by_id.test │ │ ├── extra_field_align.test │ │ ├── extra_field_align_1-0.zip │ │ ├── extra_field_align_1-ef_00.zip │ │ ├── extra_field_align_1-ef_ff.zip │ │ ├── extra_field_align_1-ff.zip │ │ ├── extra_field_align_2-0.zip │ │ ├── extra_field_align_2-ef_00.zip │ │ ├── extra_field_align_2-ef_ff.zip │ │ ├── extra_field_align_2-ff.zip │ │ ├── extra_field_align_3-0.zip │ │ ├── extra_field_align_3-ef_00.zip │ │ ├── extra_field_align_3-ef_ff.zip │ │ ├── extra_field_align_3-ff.zip │ │ ├── extra_field_align_4-ff.zip │ │ ├── extra_get.test │ │ ├── extra_get_by_id.test │ │ ├── extra_set.test │ │ ├── extra_set_modify_c.test │ │ ├── extra_set_modify_l.test │ │ ├── fdopen_ok.test │ │ ├── file_comment_encmismatch.test │ │ ├── filename_duplicate.zip │ │ ├── filename_duplicate_empty.zip │ │ ├── filename_empty.zip │ │ ├── fileorder.zip │ │ ├── firstsecond-split-deflated.zip │ │ ├── firstsecond-split-stored.zip │ │ ├── firstsecond.zip │ │ ├── foo-stored.zip │ │ ├── fopen_unchanged.c │ │ ├── fopen_unchanged.test │ │ ├── fread.c │ │ ├── fread.test │ │ ├── fseek.c │ │ ├── fseek_deflated.test │ │ ├── fseek_fail.test │ │ ├── fseek_ok.test │ │ ├── fuzz_main.c │ │ ├── gap-add.zip │ │ ├── gap-delete.zip │ │ ├── gap-replace.zip │ │ ├── gap.zip │ │ ├── get_comment.test │ │ ├── hole.c │ │ ├── incons-archive-comment-longer.zip │ │ ├── incons-archive-comment-shorter.zip │ │ ├── incons-cdoffset.zip │ │ ├── incons-central-compression-method.zip │ │ ├── incons-central-compsize-larger-toolarge.zip │ │ ├── incons-central-compsize-larger.zip │ │ ├── incons-central-compsize-smaller.zip │ │ ├── incons-central-crc.zip │ │ ├── incons-central-date.zip │ │ ├── incons-central-file-comment-longer.zip │ │ ├── incons-central-file-comment-shorter.zip │ │ ├── incons-central-magic-bad.zip │ │ ├── incons-central-magic-bad2.zip │ │ ├── incons-central-size-larger.zip │ │ ├── incons-data.zip │ │ ├── incons-ef-central-size-wrong.zip │ │ ├── incons-ef-local-id-size.zip │ │ ├── incons-ef-local-id.zip │ │ ├── incons-ef-local-size.zip │ │ ├── incons-eocd-magic-bad.zip │ │ ├── incons-file-count-high.zip │ │ ├── incons-file-count-low.zip │ │ ├── incons-file-count-overflow.zip │ │ ├── incons-local-compression-method.zip │ │ ├── incons-local-compsize-larger.zip │ │ ├── incons-local-compsize-smaller.zip │ │ ├── incons-local-crc.zip │ │ ├── incons-local-filename-long.zip │ │ ├── incons-local-filename-missing.zip │ │ ├── incons-local-filename-short.zip │ │ ├── incons-local-filename.zip │ │ ├── incons-local-magic-bad.zip │ │ ├── incons-local-size-larger.zip │ │ ├── junk-at-end.zip │ │ ├── junk-at-start.zip │ │ ├── junk_at_end.test │ │ ├── junk_at_start.test │ │ ├── large-uncompressable │ │ ├── liboverride-test.c │ │ ├── liboverride.c │ │ ├── lzma-no-eos.zip │ │ ├── malloc.c │ │ ├── manyfiles-zip.zip │ │ ├── multidisk.zip │ │ ├── name_locate.test │ │ ├── nihtest.conf.in │ │ ├── nonrandomopen.c │ │ ├── nonrandomopentest.c │ │ ├── open_cons_extrabytes.test │ │ ├── open_empty.test │ │ ├── open_empty_2.test │ │ ├── open_extrabytes.test │ │ ├── open_file_count.test │ │ ├── open_filename_duplicate.test │ │ ├── open_filename_duplicate_consistency.test │ │ ├── open_filename_duplicate_empty.test │ │ ├── open_filename_duplicate_empty_consistency.test │ │ ├── open_filename_empty.test │ │ ├── open_incons.test │ │ ├── open_many_fail.test │ │ ├── open_many_ok.test │ │ ├── open_multidisk.test │ │ ├── open_new_but_exists.test │ │ ├── open_new_ok.test │ │ ├── open_nonarchive.test │ │ ├── open_nosuchfile.test │ │ ├── open_ok.test │ │ ├── open_too_short.test │ │ ├── open_truncate.test │ │ ├── open_zip64_3mf.test │ │ ├── open_zip64_ok.test │ │ ├── ossfuzz.sh │ │ ├── preload.test │ │ ├── progress.test │ │ ├── rename_ascii.test │ │ ├── rename_cp437.test │ │ ├── rename_deleted.test │ │ ├── rename_fail.test │ │ ├── rename_ok.test │ │ ├── rename_ok.zip │ │ ├── rename_utf8.test │ │ ├── rename_utf8_encmismatch.test │ │ ├── runtest.in │ │ ├── set_comment_all.test │ │ ├── set_comment_localonly.test │ │ ├── set_comment_removeglobal.test │ │ ├── set_comment_revert.test │ │ ├── set_compression_bzip2_to_deflate.test │ │ ├── set_compression_deflate_to_bzip2.test │ │ ├── set_compression_deflate_to_deflate.test │ │ ├── set_compression_deflate_to_store.test │ │ ├── set_compression_lzma_no_eos_to_store.test │ │ ├── set_compression_lzma_to_store.test │ │ ├── set_compression_store_to_bzip2.test │ │ ├── set_compression_store_to_deflate.test │ │ ├── set_compression_store_to_lzma.test │ │ ├── set_compression_store_to_store.test │ │ ├── set_compression_store_to_xz.test │ │ ├── set_compression_store_to_zstd.test │ │ ├── set_compression_unknown.test │ │ ├── set_compression_xz_to_store.test │ │ ├── set_compression_zstd_to_store.test │ │ ├── set_file_dostime.test │ │ ├── set_file_mtime.test │ │ ├── source_hole.c │ │ ├── stat_index_cp437_guess.test │ │ ├── stat_index_cp437_raw.test │ │ ├── stat_index_cp437_strict.test │ │ ├── stat_index_fileorder.test │ │ ├── stat_index_streamed.test │ │ ├── stat_index_streamed_zip64.test │ │ ├── stat_index_utf8_guess.test │ │ ├── stat_index_utf8_raw.test │ │ ├── stat_index_utf8_strict.test │ │ ├── stat_index_utf8_unmarked_strict.test │ │ ├── stat_index_zip64.test │ │ ├── stored-no-eos.zip │ │ ├── streamed-zip64.zip │ │ ├── streamed.zip │ │ ├── test-cp437-comment-utf-8.zip │ │ ├── test-cp437-fc-utf-8-filename.zip │ │ ├── test-cp437-fc.zip │ │ ├── test-cp437.zip │ │ ├── test-utf8-unmarked.zip │ │ ├── test-utf8.zip │ │ ├── test.zip │ │ ├── test2.zip │ │ ├── testbuffer.zip │ │ ├── testbzip2.zip │ │ ├── testchanged.zip │ │ ├── testchangedlocal.zip │ │ ├── testcomment.zip │ │ ├── testcomment13.zip │ │ ├── testcommentremoved.zip │ │ ├── testdeflated.zip │ │ ├── testdeflated2.zip │ │ ├── testdir.zip │ │ ├── testempty.zip │ │ ├── testextrabytes.zip │ │ ├── testfile-UTF8.zip │ │ ├── testfile-cp437.zip │ │ ├── testfile-lzma.zip │ │ ├── testfile-plus-extra.zip │ │ ├── testfile-stored-dos.zip │ │ ├── testfile-xz.zip │ │ ├── testfile-zstd.zip │ │ ├── testfile.txt │ │ ├── testfile.zip │ │ ├── testfile0.zip │ │ ├── testfile2014.zip │ │ ├── teststdin.zip │ │ ├── teststored.zip │ │ ├── tryopen.c │ │ ├── utf-8-standardization-input.zip │ │ ├── utf-8-standardization-output.zip │ │ ├── utf-8-standardization.test │ │ ├── zip-in-archive-comment.test │ │ ├── zip-in-archive-comment.zip │ │ ├── zip64-3mf.zip │ │ ├── zip64.zip │ │ ├── zip64_creation.test │ │ ├── zip64_stored_creation.test │ │ ├── zip_read_fuzzer.cc │ │ ├── zip_read_fuzzer.dict │ │ ├── zipcmp_zip_dir.test │ │ ├── zipcmp_zip_dir.zip │ │ └── ziptool_regress.c │ └── src │ │ ├── CMakeLists.txt │ │ ├── diff_output.c │ │ ├── diff_output.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── zipcmp.c │ │ ├── zipmerge.c │ │ └── ziptool.c ├── monero_crypto │ ├── CMakeLists.txt │ ├── aesb.c │ ├── blake256.c │ ├── blake256.h │ ├── chacha8.c │ ├── chacha8.h │ ├── common │ │ ├── int-util.h │ │ ├── memwipe.c │ │ └── memwipe.h │ ├── crypto-ops-data.c │ ├── crypto-ops.c │ ├── crypto-ops.h │ ├── crypto_ops_builder │ │ ├── Makefile │ │ ├── README.md │ │ ├── api.h │ │ ├── crypto-ops-data.c │ │ ├── crypto-ops-old.c │ │ ├── crypto-ops.h │ │ ├── crypto_int32.h │ │ ├── crypto_sign.h │ │ ├── crypto_uint32.h │ │ ├── crypto_verify_32.h │ │ ├── ietf.txt │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── libsodium_LICENSE │ │ │ ├── sodium.h │ │ │ └── sodium │ │ │ │ ├── crypto_int32.h │ │ │ │ ├── crypto_int64.h │ │ │ │ ├── crypto_uint16.h │ │ │ │ ├── crypto_uint32.h │ │ │ │ ├── crypto_uint64.h │ │ │ │ ├── crypto_uint8.h │ │ │ │ ├── crypto_verify_32.h │ │ │ │ └── randombytes.h │ │ ├── randombytes.c │ │ ├── ref10 │ │ │ ├── Makefile │ │ │ ├── api.h │ │ │ ├── base.h │ │ │ ├── base.py │ │ │ ├── base2.h │ │ │ ├── base2.py │ │ │ ├── d.h │ │ │ ├── d.py │ │ │ ├── d2.h │ │ │ ├── d2.py │ │ │ ├── description │ │ │ ├── designers │ │ │ ├── fe.h │ │ │ ├── fe_0.c │ │ │ ├── fe_1.c │ │ │ ├── fe_add.c │ │ │ ├── fe_cmov.c │ │ │ ├── fe_copy.c │ │ │ ├── fe_frombytes.c │ │ │ ├── fe_invert.c │ │ │ ├── fe_isnegative.c │ │ │ ├── fe_isnonzero.c │ │ │ ├── fe_mul.c │ │ │ ├── fe_neg.c │ │ │ ├── fe_pow22523.c │ │ │ ├── fe_sq.c │ │ │ ├── fe_sq2.c │ │ │ ├── fe_sub.c │ │ │ ├── fe_tobytes.c │ │ │ ├── ge.h │ │ │ ├── ge_add.c │ │ │ ├── ge_add.h │ │ │ ├── ge_add.q │ │ │ ├── ge_double_scalarmult.c │ │ │ ├── ge_frombytes.c │ │ │ ├── ge_madd.c │ │ │ ├── ge_madd.h │ │ │ ├── ge_madd.q │ │ │ ├── ge_msub.c │ │ │ ├── ge_msub.h │ │ │ ├── ge_msub.q │ │ │ ├── ge_p1p1_to_p2.c │ │ │ ├── ge_p1p1_to_p3.c │ │ │ ├── ge_p2_0.c │ │ │ ├── ge_p2_dbl.c │ │ │ ├── ge_p2_dbl.h │ │ │ ├── ge_p2_dbl.q │ │ │ ├── ge_p3_0.c │ │ │ ├── ge_p3_dbl.c │ │ │ ├── ge_p3_to_cached.c │ │ │ ├── ge_p3_to_p2.c │ │ │ ├── ge_p3_tobytes.c │ │ │ ├── ge_precomp_0.c │ │ │ ├── ge_scalarmult_base.c │ │ │ ├── ge_sub.c │ │ │ ├── ge_sub.h │ │ │ ├── ge_sub.q │ │ │ ├── ge_tobytes.c │ │ │ ├── keypair.c │ │ │ ├── open.c │ │ │ ├── pow22523.h │ │ │ ├── pow22523.q │ │ │ ├── pow225521.h │ │ │ ├── pow225521.q │ │ │ ├── q2h.sh │ │ │ ├── sc.h │ │ │ ├── sc_muladd.c │ │ │ ├── sc_reduce.c │ │ │ ├── sign.c │ │ │ ├── sqrtm1.h │ │ │ └── sqrtm1.py │ │ ├── ref10CommentedCombined │ │ │ ├── MakeCryptoOps.py │ │ │ ├── api.h │ │ │ ├── base.h │ │ │ ├── base.py │ │ │ ├── base2.h │ │ │ ├── base2.py │ │ │ ├── crypto-ops.h │ │ │ ├── d.h │ │ │ ├── d.py │ │ │ ├── d2.h │ │ │ ├── d2.py │ │ │ ├── description │ │ │ ├── designers │ │ │ ├── fe.h │ │ │ ├── fe_0.c │ │ │ ├── fe_1.c │ │ │ ├── fe_add.c │ │ │ ├── fe_cmov.c │ │ │ ├── fe_copy.c │ │ │ ├── fe_frombytes.c │ │ │ ├── fe_invert.c │ │ │ ├── fe_isnegative.c │ │ │ ├── fe_isnonzero.c │ │ │ ├── fe_mul.c │ │ │ ├── fe_neg.c │ │ │ ├── fe_pow22523.c │ │ │ ├── fe_sq.c │ │ │ ├── fe_sq2.c │ │ │ ├── fe_sub.c │ │ │ ├── fe_tobytes.c │ │ │ ├── ge.h │ │ │ ├── ge_add.c │ │ │ ├── ge_add.h │ │ │ ├── ge_add.q │ │ │ ├── ge_double_scalarmult.c │ │ │ ├── ge_frombytes.c │ │ │ ├── ge_madd.c │ │ │ ├── ge_madd.h │ │ │ ├── ge_madd.q │ │ │ ├── ge_msub.c │ │ │ ├── ge_msub.h │ │ │ ├── ge_msub.q │ │ │ ├── ge_p1p1_to_p2.c │ │ │ ├── ge_p1p1_to_p3.c │ │ │ ├── ge_p2_0.c │ │ │ ├── ge_p2_dbl.c │ │ │ ├── ge_p2_dbl.h │ │ │ ├── ge_p2_dbl.q │ │ │ ├── ge_p3_0.c │ │ │ ├── ge_p3_dbl.c │ │ │ ├── ge_p3_to_cached.c │ │ │ ├── ge_p3_to_p2.c │ │ │ ├── ge_p3_tobytes.c │ │ │ ├── ge_precomp_0.c │ │ │ ├── ge_scalarmult_base.c │ │ │ ├── ge_sub.c │ │ │ ├── ge_sub.h │ │ │ ├── ge_sub.q │ │ │ ├── ge_tobytes.c │ │ │ ├── keypair.c │ │ │ ├── open.c │ │ │ ├── pow22523.h │ │ │ ├── pow22523.q │ │ │ ├── pow225521.h │ │ │ ├── pow225521.q │ │ │ ├── q2h.sh │ │ │ ├── sc.h │ │ │ ├── sc_muladd.c │ │ │ ├── sc_reduce.c │ │ │ ├── sc_sub.xmr.c │ │ │ ├── scrap.txt │ │ │ ├── sign.c │ │ │ ├── sqrtm1.h │ │ │ ├── sqrtm1.py │ │ │ ├── test.py │ │ │ └── xmrSpecificOld.c │ │ ├── sha512-blocks.c │ │ ├── sha512-hash.c │ │ ├── sha512.h │ │ └── verify.c │ ├── generic-ops.h │ ├── groestl.c │ ├── groestl.h │ ├── groestl_tables.h │ ├── hash-extra-blake.c │ ├── hash-extra-groestl.c │ ├── hash-extra-jh.c │ ├── hash-extra-skein.c │ ├── hash-ops.h │ ├── hash.c │ ├── hash.h │ ├── initializer.h │ ├── jh.c │ ├── jh.h │ ├── keccak.c │ ├── keccak.h │ ├── oaes_config.h │ ├── oaes_lib.c │ ├── oaes_lib.h │ ├── random.c │ ├── random.h │ ├── skein.c │ ├── skein.h │ ├── skein_port.h │ ├── slow-hash.c │ ├── tree-hash.c │ └── warnings.h └── openssl-cmake │ ├── CMakeLists.txt │ ├── cmake │ └── BuildOpenSSL.cmake │ ├── patches │ └── 0001-Fix-failing-cms-test-when-no-des-is-used.patch │ └── scripts │ └── building_env.py ├── CMakeLists.txt ├── Changelog ├── LICENSE ├── README.md ├── UTXO_CLI_COVERAGE_ANALYSIS.md ├── cellframe-sdk.c ├── cellframe-sdk.pro ├── cmake └── ReadMKFile.cmake ├── docs └── utxo │ └── UTXO_BLOCKING_EXAMPLES.md ├── modules ├── CMakeLists.txt ├── chain │ ├── CMakeLists.txt │ ├── dap_chain.c │ ├── dap_chain_cell.c │ ├── dap_chain_ch.c │ ├── dap_chain_ch_pkt.c │ ├── dap_chain_cs.c │ ├── dap_chain_policy.c │ ├── dap_chain_tx.c │ ├── include │ │ ├── dap_chain.h │ │ ├── dap_chain_cell.h │ │ ├── dap_chain_ch.h │ │ ├── dap_chain_ch_pkt.h │ │ ├── dap_chain_cs.h │ │ ├── dap_chain_policy.h │ │ └── dap_chain_tx.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── dap_chain_ledger_tests.c │ │ ├── include │ │ └── dap_chain_ledger_tests.h │ │ └── main.c ├── channel │ ├── chain-net-srv │ │ ├── CMakeLists.txt │ │ ├── dap_stream_ch_chain_net_srv.c │ │ ├── dap_stream_ch_chain_net_srv_pkt.c │ │ └── include │ │ │ ├── dap_stream_ch_chain_net_srv.h │ │ │ └── dap_stream_ch_chain_net_srv_pkt.h │ └── chain-net │ │ ├── CMakeLists.txt │ │ ├── dap_stream_ch_chain_net.c │ │ ├── dap_stream_ch_chain_net_pkt.c │ │ └── include │ │ ├── dap_stream_ch_chain_net.h │ │ └── dap_stream_ch_chain_net_pkt.h ├── common │ ├── CMakeLists.txt │ ├── common.pri │ ├── dap_chain_common.c │ ├── dap_chain_datum.c │ ├── dap_chain_datum_anchor.c │ ├── dap_chain_datum_decree.c │ ├── dap_chain_datum_hashtree_roots.c │ ├── dap_chain_datum_poll.c │ ├── dap_chain_datum_token.c │ ├── dap_chain_datum_tx.c │ ├── dap_chain_datum_tx_items.c │ ├── dap_chain_datum_tx_receipt.c │ ├── dap_chain_datum_tx_voting.c │ ├── include │ │ ├── dap_chain_common.h │ │ ├── dap_chain_datum.h │ │ ├── dap_chain_datum_anchor.h │ │ ├── dap_chain_datum_decree.h │ │ ├── dap_chain_datum_hashtree_roots.h │ │ ├── dap_chain_datum_token.h │ │ ├── dap_chain_datum_tx.h │ │ ├── dap_chain_datum_tx_event.h │ │ ├── dap_chain_datum_tx_in.h │ │ ├── dap_chain_datum_tx_in_cond.h │ │ ├── dap_chain_datum_tx_in_ems.h │ │ ├── dap_chain_datum_tx_in_reward.h │ │ ├── dap_chain_datum_tx_items.h │ │ ├── dap_chain_datum_tx_out.h │ │ ├── dap_chain_datum_tx_out_cond.h │ │ ├── dap_chain_datum_tx_pkey.h │ │ ├── dap_chain_datum_tx_receipt.h │ │ ├── dap_chain_datum_tx_sig.h │ │ ├── dap_chain_datum_tx_tsd.h │ │ └── dap_chain_datum_tx_voting.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── dap_struct_packing_tests.c │ │ ├── include │ │ ├── dap_chain_datum_tx_json_tests.h │ │ └── dap_struct_packing_tests.h │ │ ├── main.c │ │ └── test_dap_chain_datum_tx_json.c ├── compose │ ├── CMakeLists.txt │ ├── dap_chain_tx_compose.c │ ├── include │ │ └── dap_chain_tx_compose.h │ └── tests │ │ ├── CMakeLists.txt │ │ └── main.c ├── consensus │ ├── block-pow │ │ ├── CMakeLists.txt │ │ ├── dap_chain_cs_block_pow.c │ │ └── include │ │ │ └── dap_chain_cs_block_pow.h │ ├── dag-poa │ │ ├── CMakeLists.txt │ │ ├── dap_chain_cs_dag_poa.c │ │ └── include │ │ │ └── dap_chain_cs_dag_poa.h │ └── esbocs │ │ ├── CMakeLists.txt │ │ ├── dap_chain_cs_esbocs.c │ │ └── include │ │ └── dap_chain_cs_esbocs.h ├── dht │ ├── CMakeLists.txt │ ├── dap_chain_dht.c │ └── include │ │ └── dap_chain_dht.h ├── mempool │ ├── CMakeLists.txt │ ├── dap_chain_mempool.c │ └── include │ │ ├── dap_chain_mempool.h │ │ └── dap_chain_mempool_rpc.h ├── mining │ ├── CMakeLists.txt │ ├── dap_hash_slow.c │ └── include │ │ └── dap_hash_slow.h ├── net │ ├── CMakeLists.txt │ ├── dap_chain_ledger.c │ ├── dap_chain_net.c │ ├── dap_chain_net_anchor.c │ ├── dap_chain_net_balancer.c │ ├── dap_chain_net_decree.c │ ├── dap_chain_net_node_list.c │ ├── dap_chain_net_tx.c │ ├── dap_chain_node.c │ ├── dap_chain_node_cli.c │ ├── dap_chain_node_cli_cmd.c │ ├── dap_chain_node_cli_cmd_tx.c │ ├── dap_chain_node_client.c │ ├── dap_chain_node_dns_client.c │ ├── dap_chain_node_dns_server.c │ ├── dap_chain_node_ping.c │ ├── include │ │ ├── dap_chain_ledger.h │ │ ├── dap_chain_net.h │ │ ├── dap_chain_net_anchor.h │ │ ├── dap_chain_net_balancer.h │ │ ├── dap_chain_net_bugreport.h │ │ ├── dap_chain_net_decree.h │ │ ├── dap_chain_net_node_list.h │ │ ├── dap_chain_net_tx.h │ │ ├── dap_chain_node.h │ │ ├── dap_chain_node_cli.h │ │ ├── dap_chain_node_cli_cmd.h │ │ ├── dap_chain_node_cli_cmd_tx.h │ │ ├── dap_chain_node_client.h │ │ ├── dap_chain_node_dns_client.h │ │ ├── dap_chain_node_dns_server.h │ │ └── dap_chain_node_ping.h │ ├── iputils │ │ ├── iputils.c │ │ ├── iputils.h │ │ ├── ping.c │ │ ├── ping.h │ │ ├── ping6_common.c │ │ ├── ping_common.c │ │ ├── tracepath.c │ │ └── traceroute │ │ │ ├── as_lookups.c │ │ │ ├── clif.c │ │ │ ├── clif.h │ │ │ ├── csum.c │ │ │ ├── extension.c │ │ │ ├── flowlabel.h │ │ │ ├── mod-dccp.c │ │ │ ├── mod-icmp.c │ │ │ ├── mod-raw.c │ │ │ ├── mod-tcp.c │ │ │ ├── mod-tcpconn.c │ │ │ ├── mod-udp.c │ │ │ ├── module.c │ │ │ ├── poll.c │ │ │ ├── random.c │ │ │ ├── time.c │ │ │ ├── traceroute.c │ │ │ └── traceroute.h │ ├── srv │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv.c │ │ ├── dap_chain_net_srv_client.c │ │ ├── dap_chain_net_srv_geoip.c │ │ ├── dap_chain_net_srv_order.c │ │ ├── dap_chain_net_srv_stream_session.c │ │ └── include │ │ │ ├── dap_chain_net_srv.h │ │ │ ├── dap_chain_net_srv_client.h │ │ │ ├── dap_chain_net_srv_countries.h │ │ │ ├── dap_chain_net_srv_geoip.h │ │ │ ├── dap_chain_net_srv_order.h │ │ │ └── dap_chain_net_srv_stream_session.h │ └── win32 │ │ ├── ip.h │ │ └── iphdr.h ├── service │ ├── app-db │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_app_db.c │ │ └── include │ │ │ └── dap_chain_net_srv_app_db.h │ ├── app │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_app.c │ │ └── include │ │ │ └── dap_chain_net_srv_app.h │ ├── bridge │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_bridge.c │ │ └── include │ │ │ └── dap_chain_net_srv_bridge.h │ ├── datum │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_datum.c │ │ └── include │ │ │ └── dap_chain_net_srv_datum.h │ ├── mining-pool │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_datum_pool.c │ │ └── include │ │ │ └── dap_chain_net_srv_datum_pool.h │ ├── stake-ext │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_stake_ext.c │ │ ├── include │ │ │ └── dap_chain_net_srv_stake_ext.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── UNIT_TESTS_SPECIFICATION.md │ │ │ ├── dap_chain_net_srv_stake_ext_tests.c │ │ │ ├── include │ │ │ └── dap_chain_net_srv_stake_ext_tests.h │ │ │ └── main.c │ ├── stake │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_stake_lock.c │ │ ├── dap_chain_net_srv_stake_pos_delegate.c │ │ └── include │ │ │ ├── dap_chain_net_srv_stake_lock.h │ │ │ └── dap_chain_net_srv_stake_pos_delegate.h │ ├── voting │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_voting.c │ │ └── include │ │ │ └── dap_chain_net_srv_voting.h │ ├── vpn │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_vpn.c │ │ ├── dap_chain_net_srv_vpn_cmd.c │ │ ├── dap_chain_net_srv_vpn_cmd.h │ │ ├── dap_chain_net_srv_vpn_common.c │ │ ├── dap_chain_net_vpn_client.c │ │ ├── dap_chain_net_vpn_client_tun.c │ │ └── include │ │ │ ├── dap_chain_net_srv_vpn.h │ │ │ ├── dap_chain_net_srv_vpn_common.h │ │ │ ├── dap_chain_net_vpn_client.h │ │ │ └── dap_chain_net_vpn_client_tun.h │ └── xchange │ │ ├── CMakeLists.txt │ │ ├── dap_chain_net_srv_xchange.c │ │ └── include │ │ └── dap_chain_net_srv_xchange.h ├── type │ ├── blocks │ │ ├── CMakeLists.txt │ │ ├── dap_chain_block.c │ │ ├── dap_chain_block_cache.c │ │ ├── dap_chain_cs_blocks.c │ │ ├── include │ │ │ ├── dap_chain_block.h │ │ │ ├── dap_chain_block_cache.h │ │ │ └── dap_chain_cs_blocks.h │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── dap_chain_blocks_test.c │ │ │ ├── include │ │ │ └── dap_chain_blocks_test.h │ │ │ └── main.c │ ├── dag │ │ ├── CMakeLists.txt │ │ ├── dap_chain_cs_dag.c │ │ ├── dap_chain_cs_dag_event.c │ │ └── include │ │ │ ├── dap_chain_cs_dag.h │ │ │ └── dap_chain_cs_dag_event.h │ └── none │ │ ├── CMakeLists.txt │ │ ├── dap_chain_cs_none.c │ │ └── include │ │ └── dap_chain_cs_none.h └── wallet │ ├── CMakeLists.txt │ ├── dap_chain_coin.c │ ├── dap_chain_wallet.c │ ├── dap_chain_wallet_cache.c │ ├── dap_chain_wallet_ops.c │ ├── dap_chain_wallet_shared.c │ └── include │ ├── dap_chain_coin.h │ ├── dap_chain_wallet.h │ ├── dap_chain_wallet_cache.h │ ├── dap_chain_wallet_internal.h │ ├── dap_chain_wallet_ops.h │ └── dap_chain_wallet_shared.h ├── os └── win32 │ ├── ip.h │ └── iphdr.h ├── prod_build ├── build.sh ├── pack.sh ├── packaging │ ├── deb │ │ ├── config │ │ ├── postinst │ │ ├── postrm │ │ ├── prerm │ │ ├── rules │ │ └── templates │ ├── linux.sh │ └── osx.sh ├── targets │ ├── android.sh │ ├── linux.sh │ ├── osx.sh │ └── windows.sh └── validate.sh ├── project.yaml └── tests ├── CMakeLists.txt ├── FIXTURES_API.md ├── README.md ├── fixtures ├── CMakeLists.txt ├── test_emission_fixtures.c ├── test_emission_fixtures.h ├── test_ledger_fixtures.c ├── test_ledger_fixtures.h ├── test_token_fixtures.c ├── test_token_fixtures.h ├── test_transaction_fixtures.c └── test_transaction_fixtures.h ├── integration ├── CMakeLists.txt ├── utxo_blocking_cli_integration_test.c └── utxo_blocking_integration_test.c └── unit ├── CMakeLists.txt └── utxo_blocking_unit_test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/crc32c_adler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/crc32c_adler/README -------------------------------------------------------------------------------- /3rdparty/crc32c_adler/crc32c_adler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/crc32c_adler/crc32c_adler.c -------------------------------------------------------------------------------- /3rdparty/crc32c_adler/crc32c_adler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/crc32c_adler/crc32c_adler.h -------------------------------------------------------------------------------- /3rdparty/crc32c_adler/example-dht.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/crc32c_adler/example-dht.c -------------------------------------------------------------------------------- /3rdparty/crc32c_adler/example-stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/crc32c_adler/example-stdin.c -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/data-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/data-pool.c -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/data-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/data-pool.h -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/maxminddb-compat-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/maxminddb-compat-util.h -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/maxminddb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/maxminddb.c -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/maxminddb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/maxminddb.h -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/maxminddb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/maxminddb_config.h -------------------------------------------------------------------------------- /3rdparty/libmaxminddb/mmdblookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libmaxminddb/mmdblookup.c -------------------------------------------------------------------------------- /3rdparty/libzip/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/.clang-format -------------------------------------------------------------------------------- /3rdparty/libzip/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/.github/workflows/build.yml -------------------------------------------------------------------------------- /3rdparty/libzip/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/.github/workflows/main.yml -------------------------------------------------------------------------------- /3rdparty/libzip/API-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/API-CHANGES.md -------------------------------------------------------------------------------- /3rdparty/libzip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/AUTHORS -------------------------------------------------------------------------------- /3rdparty/libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/INSTALL.md -------------------------------------------------------------------------------- /3rdparty/libzip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/LICENSE -------------------------------------------------------------------------------- /3rdparty/libzip/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/NEWS.md -------------------------------------------------------------------------------- /3rdparty/libzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/README.md -------------------------------------------------------------------------------- /3rdparty/libzip/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/THANKS -------------------------------------------------------------------------------- /3rdparty/libzip/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/TODO.md -------------------------------------------------------------------------------- /3rdparty/libzip/android/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/android/do.sh -------------------------------------------------------------------------------- /3rdparty/libzip/android/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/android/docker/Dockerfile -------------------------------------------------------------------------------- /3rdparty/libzip/android/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/android/readme.txt -------------------------------------------------------------------------------- /3rdparty/libzip/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/appveyor.yml -------------------------------------------------------------------------------- /3rdparty/libzip/cmake-compat/FindBZip2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake-compat/FindBZip2.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake-compat/FindGnuTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake-compat/FindGnuTLS.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake-compat/FindLibLZMA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake-compat/FindLibLZMA.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake-config.h.in -------------------------------------------------------------------------------- /3rdparty/libzip/cmake-zipconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake-zipconf.h.in -------------------------------------------------------------------------------- /3rdparty/libzip/cmake/Dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake/Dist.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake/FindMbedTLS.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake/FindNettle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake/FindNettle.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/cmake/FindZstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/cmake/FindZstd.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/examples/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/examples/in-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/examples/in-memory.c -------------------------------------------------------------------------------- /3rdparty/libzip/examples/windows-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/examples/windows-open.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/lib/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/compat.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_add.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_add_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_add_dir.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_add_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_add_entry.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_algorithm_bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_algorithm_bzip2.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_algorithm_deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_algorithm_deflate.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_algorithm_xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_algorithm_xz.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_algorithm_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_algorithm_zstd.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_buffer.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_close.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_commoncrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_commoncrypto.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_commoncrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_commoncrypto.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_gnutls.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_gnutls.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_mbedtls.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_mbedtls.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_openssl.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_openssl.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_win.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_crypto_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_crypto_win.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_delete.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_dir_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_dir_add.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_dirent.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_discard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_discard.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_entry.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error_clear.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error_get.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error_get_sys_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error_get_sys_type.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error_strerror.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_error_to_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_error_to_str.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_extra_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_extra_field.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_extra_field_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_extra_field_api.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fclose.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fdopen.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_add.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_error_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_error_clear.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_error_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_error_get.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_get_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_get_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_get_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_get_offset.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_rename.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_replace.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_set_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_set_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_set_encryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_set_encryption.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_set_mtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_set_mtime.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_file_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_file_strerror.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fopen.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fopen_encrypted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fopen_encrypted.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fopen_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fopen_index.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fopen_index_encrypted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fopen_index_encrypted.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fread.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_fseek.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_ftell.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_archive_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_archive_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_archive_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_archive_flag.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_file_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_file_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_name.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_num_entries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_num_entries.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_get_num_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_get_num_files.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_hash.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_io_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_io_util.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_libzip_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_libzip_version.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_memdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_memdup.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_mkstempm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_mkstempm.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_name_locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_name_locate.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_new.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_open.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_pkware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_pkware.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_progress.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_random_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_random_unix.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_random_uwp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_random_uwp.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_random_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_random_win32.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_rename.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_replace.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_archive_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_archive_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_archive_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_archive_flag.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_default_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_default_password.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_file_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_file_comment.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_file_compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_file_compression.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_set_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_set_name.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_accept_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_accept_empty.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_begin_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_begin_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_buffer.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_call.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_close.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_commit_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_commit_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_compress.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_crc.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_error.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_common.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_stdio.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_stdio.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_win32.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_win32.h -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_win32_ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_win32_ansi.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_file_win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_file_win32_utf8.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_free.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_function.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_is_deleted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_is_deleted.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_layered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_layered.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_open.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_pkware_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_pkware_decode.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_pkware_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_pkware_encode.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_read.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_remove.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_rollback_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_rollback_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_seek.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_seek_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_seek_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_stat.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_supports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_supports.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_tell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_tell.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_tell_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_tell_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_window.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_write.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_zip.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_source_zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_source_zip_new.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_stat.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_stat_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_stat_index.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_stat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_stat_init.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_strerror.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_string.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_unchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_unchange.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_unchange_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_unchange_all.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_unchange_archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_unchange_archive.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_unchange_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_unchange_data.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_utf-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_utf-8.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zip_winzip_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zip_winzip_aes.c -------------------------------------------------------------------------------- /3rdparty/libzip/lib/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/lib/zipint.h -------------------------------------------------------------------------------- /3rdparty/libzip/libzip-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/libzip-config.cmake.in -------------------------------------------------------------------------------- /3rdparty/libzip/libzip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/libzip.pc.in -------------------------------------------------------------------------------- /3rdparty/libzip/man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ZIP_SOURCE_GET_ARGS.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/handle_links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/handle_links -------------------------------------------------------------------------------- /3rdparty/libzip/man/libzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/libzip.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/libzip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/libzip.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/libzip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/libzip.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/links -------------------------------------------------------------------------------- /3rdparty/libzip/man/update-html.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/update-html.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/man/update-man.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/update-man.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add_dir.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add_dir.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add_dir.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_add_dir.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_add_dir.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_close.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_close.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_close.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_close.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_close.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_delete.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_delete.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_delete.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_delete.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_delete.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_dir_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_dir_add.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_dir_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_dir_add.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_dir_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_dir_add.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_discard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_discard.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_discard.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_discard.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_discard.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_discard.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_clear.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_clear.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_clear.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_clear.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_clear.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_system.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_system.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_system.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_system.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_system.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_zip.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_zip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_zip.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_code_zip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_code_zip.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_fini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_fini.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_fini.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_fini.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_fini.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_fini.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_get.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_get.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_get.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_get.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_get.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_init.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_init.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_init.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_init.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_init.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_set.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_set.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_set.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_set.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_set.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_strerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_strerror.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_strerror.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_strerror.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_strerror.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_strerror.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_system_type.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_system_type.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_data.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_data.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_data.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_data.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_data.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_str.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_str.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_str.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_str.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_error_to_str.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_error_to_str.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_errors.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_errors.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_errors.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_errors.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_errors.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fclose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fclose.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fclose.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fclose.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fclose.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fclose.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fdopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fdopen.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fdopen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fdopen.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fdopen.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fdopen.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_add.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_add.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_add.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_comment.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_comment.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_comment.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_error.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_error.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_get_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_get_error.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_rename.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_rename.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_rename.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_rename.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_rename.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_comment.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_comment.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_comment.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_mtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_mtime.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_mtime.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_mtime.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_set_mtime.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_set_mtime.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_strerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_strerror.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_strerror.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_strerror.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_file_strerror.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_file_strerror.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen_encrypted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen_encrypted.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen_encrypted.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen_encrypted.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fopen_encrypted.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fopen_encrypted.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fread.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fread.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fread.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fread.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fread.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fseek.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fseek.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fseek.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_fseek.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_fseek.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_ftell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_ftell.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_ftell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_ftell.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_ftell.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_ftell.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_archive_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_archive_flag.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_archive_flag.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_archive_flag.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_archive_flag.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_archive_flag.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_error.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_error.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_error.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_file_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_file_comment.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_file_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_file_comment.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_file_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_file_comment.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_name.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_name.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_name.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_name.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_name.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_entries.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_entries.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_entries.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_entries.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_entries.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_files.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_files.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_files.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_get_num_files.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_get_num_files.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_libzip_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_libzip_version.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_libzip_version.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_libzip_version.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_libzip_version.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_libzip_version.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_name_locate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_name_locate.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_name_locate.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_name_locate.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_name_locate.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_name_locate.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_open.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_open.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_open.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_open.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_open.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_rename.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_rename.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_rename.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_rename.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_rename.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_archive_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_archive_flag.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_archive_flag.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_archive_flag.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_archive_flag.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_archive_flag.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_file_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_file_comment.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_file_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_file_comment.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_set_file_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_set_file_comment.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_buffer.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_buffer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_buffer.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_buffer.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_buffer.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_close.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_close.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_close.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_close.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_close.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_error.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_error.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_error.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_file.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_file.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_file.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_file.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_file.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_filep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_filep.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_filep.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_filep.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_filep.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_filep.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_free.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_free.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_free.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_free.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_free.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_free.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_function.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_function.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_function.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_function.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_function.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_is_deleted.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_is_deleted.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_keep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_keep.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_keep.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_keep.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_keep.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_keep.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_open.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_open.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_open.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_open.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_open.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_read.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_read.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_read.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_read.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_read.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_seek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_seek.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_seek.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_seek.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_seek.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_seek.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_seek_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_seek_write.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_stat.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_stat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_stat.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_stat.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_stat.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_tell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_tell.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_tell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_tell.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_tell.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_tell.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_tell_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_tell_write.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32a.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32a.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32a.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32a.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32a.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32w.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32w.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32w.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_win32w.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_win32w.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_window.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_window.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_window.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_window.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_window.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_write.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_write.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_write.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_zip.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_zip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_zip.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_source_zip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_source_zip.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat_init.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat_init.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat_init.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_stat_init.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_stat_init.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_all.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_all.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_all.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_all.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_all.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_archive.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_archive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_archive.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zip_unchange_archive.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zip_unchange_archive.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipcmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipcmp.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipcmp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipcmp.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipcmp.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipcmp.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipmerge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipmerge.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipmerge.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipmerge.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/zipmerge.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/zipmerge.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/man/ziptool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ziptool.html -------------------------------------------------------------------------------- /3rdparty/libzip/man/ziptool.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ziptool.man -------------------------------------------------------------------------------- /3rdparty/libzip/man/ziptool.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/man/ziptool.mdoc -------------------------------------------------------------------------------- /3rdparty/libzip/regress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/regress/NiHTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/NiHTest.pm -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_dir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_dir.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_from_buffer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_from_buffer.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_from_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_from_file.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_from_filep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_from_filep.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_from_filep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_from_filep.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_from_stdin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_from_stdin.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/add_stored.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/add_stored.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/bigstored.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/bigstored.zh -------------------------------------------------------------------------------- /3rdparty/libzip/regress/bigzero-zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/bigzero-zip.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/bogus.zip: -------------------------------------------------------------------------------- 1 | bogus data 2 | -------------------------------------------------------------------------------- /3rdparty/libzip/regress/broken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/broken.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/can_clone_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/can_clone_file.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/cancel_45.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/cancel_45.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/cancel_90.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/cancel_90.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/cleanup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/cleanup.cmake -------------------------------------------------------------------------------- /3rdparty/libzip/regress/clone-buffer-add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/clone-buffer-add.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/clone-fs-add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/clone-fs-add.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/clone-fs-delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/clone-fs-delete.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/clone-fs-replace.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/clone-fs-replace.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/cm-default.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/cm-default.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/cm-default.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/cm-default.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/count_entries.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/count_entries.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/delete_add_same.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/delete_add_same.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/delete_invalid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/delete_invalid.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/delete_last.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/delete_last.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt-1234.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt-1234.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt-aes128.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt-aes128.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt-aes192.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt-aes192.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt-aes256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt-aes256.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt-none.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt-none.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encrypt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encrypt.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/encryption-stat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/encryption-stat.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_add.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_count.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_count.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_delete.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_get.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_get.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_get_by_id.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_get_by_id.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/extra_set.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/extra_set.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fdopen_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fdopen_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/filename_empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/filename_empty.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fileorder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fileorder.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/firstsecond.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/firstsecond.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/foo-stored.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/foo-stored.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fopen_unchanged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fopen_unchanged.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fopen_unchanged.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fopen_unchanged.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fread.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fread.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fread.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fseek.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fseek_deflated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fseek_deflated.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fseek_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fseek_fail.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fseek_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fseek_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/fuzz_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/fuzz_main.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/gap-add.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/gap-add.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/gap-delete.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/gap-delete.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/gap-replace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/gap-replace.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/gap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/gap.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/get_comment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/get_comment.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/hole.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/incons-cdoffset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/incons-cdoffset.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/incons-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/incons-data.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/incons-local-crc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/incons-local-crc.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/junk-at-end.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/junk-at-end.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/junk-at-start.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/junk-at-start.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/junk_at_end.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/junk_at_end.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/junk_at_start.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/junk_at_start.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/large-uncompressable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/large-uncompressable -------------------------------------------------------------------------------- /3rdparty/libzip/regress/liboverride-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/liboverride-test.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/liboverride.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/liboverride.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/lzma-no-eos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/lzma-no-eos.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/malloc.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/manyfiles-zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/manyfiles-zip.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/multidisk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/multidisk.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/name_locate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/name_locate.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/nihtest.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/nihtest.conf.in -------------------------------------------------------------------------------- /3rdparty/libzip/regress/nonrandomopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/nonrandomopen.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/nonrandomopentest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/nonrandomopentest.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_empty.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_empty_2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_empty_2.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_extrabytes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_extrabytes.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_file_count.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_file_count.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_incons.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_incons.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_many_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_many_fail.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_many_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_many_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_multidisk.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_multidisk.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_new_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_new_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_nonarchive.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_nonarchive.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_nosuchfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_nosuchfile.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_too_short.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_too_short.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_truncate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_truncate.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_zip64_3mf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_zip64_3mf.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/open_zip64_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/open_zip64_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/ossfuzz.sh -------------------------------------------------------------------------------- /3rdparty/libzip/regress/preload.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/preload.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/progress.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/progress.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_ascii.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_ascii.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_cp437.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_cp437.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_deleted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_deleted.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_fail.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_ok.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_ok.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_ok.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/rename_utf8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/rename_utf8.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/runtest.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/runtest.in -------------------------------------------------------------------------------- /3rdparty/libzip/regress/set_comment_all.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/set_comment_all.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/set_file_dostime.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/set_file_dostime.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/set_file_mtime.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/set_file_mtime.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/source_hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/source_hole.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/stat_index_zip64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/stat_index_zip64.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/stored-no-eos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/stored-no-eos.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/streamed-zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/streamed-zip64.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/streamed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/streamed.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/test-cp437-fc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/test-cp437-fc.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/test-cp437.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/test-cp437.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/test-utf8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/test-utf8.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/test.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/test2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/test2.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testbuffer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testbuffer.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testbzip2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testbzip2.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testchanged.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testchanged.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testchangedlocal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testchangedlocal.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testcomment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testcomment.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testcomment13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testcomment13.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testdeflated.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testdeflated.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testdeflated2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testdeflated2.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testdir.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testempty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testempty.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testextrabytes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testextrabytes.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile-UTF8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile-UTF8.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile-cp437.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile-cp437.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile-lzma.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile-lzma.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile-xz.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile-xz.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile-zstd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile-zstd.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile0.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/testfile2014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/testfile2014.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/teststdin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/teststdin.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/teststored.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/teststored.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/tryopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/tryopen.c -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zip64-3mf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zip64-3mf.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zip64.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zip64_creation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zip64_creation.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zip_read_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zip_read_fuzzer.cc -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zip_read_fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zip_read_fuzzer.dict -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zipcmp_zip_dir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zipcmp_zip_dir.test -------------------------------------------------------------------------------- /3rdparty/libzip/regress/zipcmp_zip_dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/zipcmp_zip_dir.zip -------------------------------------------------------------------------------- /3rdparty/libzip/regress/ziptool_regress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/regress/ziptool_regress.c -------------------------------------------------------------------------------- /3rdparty/libzip/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/src/diff_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/diff_output.c -------------------------------------------------------------------------------- /3rdparty/libzip/src/diff_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/diff_output.h -------------------------------------------------------------------------------- /3rdparty/libzip/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/getopt.c -------------------------------------------------------------------------------- /3rdparty/libzip/src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/getopt.h -------------------------------------------------------------------------------- /3rdparty/libzip/src/zipcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/zipcmp.c -------------------------------------------------------------------------------- /3rdparty/libzip/src/zipmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/zipmerge.c -------------------------------------------------------------------------------- /3rdparty/libzip/src/ziptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/libzip/src/ziptool.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/monero_crypto/aesb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/aesb.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/blake256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/blake256.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/blake256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/blake256.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/chacha8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/chacha8.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/chacha8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/chacha8.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/common/int-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/common/int-util.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/common/memwipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/common/memwipe.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/common/memwipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/common/memwipe.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/crypto-ops-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/crypto-ops-data.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/crypto-ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/crypto-ops.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/crypto-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/crypto-ops.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/generic-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/generic-ops.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/groestl.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/groestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/groestl.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/groestl_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/groestl_tables.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash-extra-blake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash-extra-blake.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash-extra-groestl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash-extra-groestl.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash-extra-jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash-extra-jh.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash-extra-skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash-extra-skein.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash-ops.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/hash.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/initializer.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/jh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/jh.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/jh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/jh.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/keccak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/keccak.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/keccak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/keccak.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/oaes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/oaes_config.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/oaes_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/oaes_lib.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/oaes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/oaes_lib.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/random.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/random.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/skein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/skein.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/skein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/skein.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/skein_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/skein_port.h -------------------------------------------------------------------------------- /3rdparty/monero_crypto/slow-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/slow-hash.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/tree-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/tree-hash.c -------------------------------------------------------------------------------- /3rdparty/monero_crypto/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/monero_crypto/warnings.h -------------------------------------------------------------------------------- /3rdparty/openssl-cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/3rdparty/openssl-cmake/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/README.md -------------------------------------------------------------------------------- /UTXO_CLI_COVERAGE_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/UTXO_CLI_COVERAGE_ANALYSIS.md -------------------------------------------------------------------------------- /cellframe-sdk.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cellframe-sdk.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/cellframe-sdk.pro -------------------------------------------------------------------------------- /cmake/ReadMKFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/cmake/ReadMKFile.cmake -------------------------------------------------------------------------------- /docs/utxo/UTXO_BLOCKING_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/docs/utxo/UTXO_BLOCKING_EXAMPLES.md -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/chain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/CMakeLists.txt -------------------------------------------------------------------------------- /modules/chain/dap_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_cell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_cell.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_ch.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_ch_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_ch_pkt.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_cs.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_policy.c -------------------------------------------------------------------------------- /modules/chain/dap_chain_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/dap_chain_tx.c -------------------------------------------------------------------------------- /modules/chain/include/dap_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_cell.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_ch.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_ch_pkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_ch_pkt.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_cs.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_policy.h -------------------------------------------------------------------------------- /modules/chain/include/dap_chain_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/include/dap_chain_tx.h -------------------------------------------------------------------------------- /modules/chain/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/tests/CMakeLists.txt -------------------------------------------------------------------------------- /modules/chain/tests/dap_chain_ledger_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/tests/dap_chain_ledger_tests.c -------------------------------------------------------------------------------- /modules/chain/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/chain/tests/main.c -------------------------------------------------------------------------------- /modules/channel/chain-net-srv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/channel/chain-net-srv/CMakeLists.txt -------------------------------------------------------------------------------- /modules/channel/chain-net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/channel/chain-net/CMakeLists.txt -------------------------------------------------------------------------------- /modules/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/CMakeLists.txt -------------------------------------------------------------------------------- /modules/common/common.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/common.pri -------------------------------------------------------------------------------- /modules/common/dap_chain_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_common.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_anchor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_anchor.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_decree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_decree.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_poll.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_token.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_tx.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_tx_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_tx_items.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_tx_receipt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_tx_receipt.c -------------------------------------------------------------------------------- /modules/common/dap_chain_datum_tx_voting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/dap_chain_datum_tx_voting.c -------------------------------------------------------------------------------- /modules/common/include/dap_chain_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/include/dap_chain_common.h -------------------------------------------------------------------------------- /modules/common/include/dap_chain_datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/include/dap_chain_datum.h -------------------------------------------------------------------------------- /modules/common/include/dap_chain_datum_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/include/dap_chain_datum_tx.h -------------------------------------------------------------------------------- /modules/common/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/tests/CMakeLists.txt -------------------------------------------------------------------------------- /modules/common/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/common/tests/main.c -------------------------------------------------------------------------------- /modules/compose/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/compose/CMakeLists.txt -------------------------------------------------------------------------------- /modules/compose/dap_chain_tx_compose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/compose/dap_chain_tx_compose.c -------------------------------------------------------------------------------- /modules/compose/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/compose/tests/CMakeLists.txt -------------------------------------------------------------------------------- /modules/compose/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/compose/tests/main.c -------------------------------------------------------------------------------- /modules/consensus/block-pow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/consensus/block-pow/CMakeLists.txt -------------------------------------------------------------------------------- /modules/consensus/dag-poa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/consensus/dag-poa/CMakeLists.txt -------------------------------------------------------------------------------- /modules/consensus/esbocs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/consensus/esbocs/CMakeLists.txt -------------------------------------------------------------------------------- /modules/dht/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/dht/CMakeLists.txt -------------------------------------------------------------------------------- /modules/dht/dap_chain_dht.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/dht/include/dap_chain_dht.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/mempool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mempool/CMakeLists.txt -------------------------------------------------------------------------------- /modules/mempool/dap_chain_mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mempool/dap_chain_mempool.c -------------------------------------------------------------------------------- /modules/mempool/include/dap_chain_mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mempool/include/dap_chain_mempool.h -------------------------------------------------------------------------------- /modules/mining/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mining/CMakeLists.txt -------------------------------------------------------------------------------- /modules/mining/dap_hash_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mining/dap_hash_slow.c -------------------------------------------------------------------------------- /modules/mining/include/dap_hash_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/mining/include/dap_hash_slow.h -------------------------------------------------------------------------------- /modules/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/CMakeLists.txt -------------------------------------------------------------------------------- /modules/net/dap_chain_ledger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_ledger.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net_anchor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net_anchor.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net_balancer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net_balancer.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net_decree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net_decree.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net_node_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net_node_list.c -------------------------------------------------------------------------------- /modules/net/dap_chain_net_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_net_tx.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_cli.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_cli_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_cli_cmd.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_cli_cmd_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_cli_cmd_tx.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_client.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_dns_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_dns_client.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_dns_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_dns_server.c -------------------------------------------------------------------------------- /modules/net/dap_chain_node_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/dap_chain_node_ping.c -------------------------------------------------------------------------------- /modules/net/include/dap_chain_ledger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_ledger.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_anchor.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_balancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_balancer.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_bugreport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_bugreport.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_decree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_decree.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_node_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_node_list.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_net_tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_net_tx.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_node.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_node_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_node_cli.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_node_cli_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_node_cli_cmd.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_node_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_node_client.h -------------------------------------------------------------------------------- /modules/net/include/dap_chain_node_ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/include/dap_chain_node_ping.h -------------------------------------------------------------------------------- /modules/net/iputils/iputils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/iputils.c -------------------------------------------------------------------------------- /modules/net/iputils/iputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/iputils.h -------------------------------------------------------------------------------- /modules/net/iputils/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/ping.c -------------------------------------------------------------------------------- /modules/net/iputils/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/ping.h -------------------------------------------------------------------------------- /modules/net/iputils/ping6_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/ping6_common.c -------------------------------------------------------------------------------- /modules/net/iputils/ping_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/ping_common.c -------------------------------------------------------------------------------- /modules/net/iputils/tracepath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/tracepath.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/as_lookups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/as_lookups.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/clif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/clif.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/clif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/clif.h -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/csum.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/extension.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/flowlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/flowlabel.h -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-dccp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-dccp.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-icmp.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-raw.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-tcp.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-tcpconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-tcpconn.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/mod-udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/mod-udp.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/module.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/poll.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/random.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/time.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/traceroute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/traceroute.c -------------------------------------------------------------------------------- /modules/net/iputils/traceroute/traceroute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/iputils/traceroute/traceroute.h -------------------------------------------------------------------------------- /modules/net/srv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/CMakeLists.txt -------------------------------------------------------------------------------- /modules/net/srv/dap_chain_net_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/dap_chain_net_srv.c -------------------------------------------------------------------------------- /modules/net/srv/dap_chain_net_srv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/dap_chain_net_srv_client.c -------------------------------------------------------------------------------- /modules/net/srv/dap_chain_net_srv_geoip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/dap_chain_net_srv_geoip.c -------------------------------------------------------------------------------- /modules/net/srv/dap_chain_net_srv_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/dap_chain_net_srv_order.c -------------------------------------------------------------------------------- /modules/net/srv/include/dap_chain_net_srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/srv/include/dap_chain_net_srv.h -------------------------------------------------------------------------------- /modules/net/win32/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/win32/ip.h -------------------------------------------------------------------------------- /modules/net/win32/iphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/net/win32/iphdr.h -------------------------------------------------------------------------------- /modules/service/app-db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/app-db/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/app/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/app/dap_chain_net_srv_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/app/dap_chain_net_srv_app.c -------------------------------------------------------------------------------- /modules/service/bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/bridge/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/datum/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/datum/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/mining-pool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/mining-pool/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/stake-ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/stake-ext/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/stake-ext/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/stake-ext/tests/main.c -------------------------------------------------------------------------------- /modules/service/stake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/stake/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/voting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/voting/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/vpn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/vpn/CMakeLists.txt -------------------------------------------------------------------------------- /modules/service/vpn/dap_chain_net_srv_vpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/vpn/dap_chain_net_srv_vpn.c -------------------------------------------------------------------------------- /modules/service/xchange/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/service/xchange/CMakeLists.txt -------------------------------------------------------------------------------- /modules/type/blocks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/CMakeLists.txt -------------------------------------------------------------------------------- /modules/type/blocks/dap_chain_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/dap_chain_block.c -------------------------------------------------------------------------------- /modules/type/blocks/dap_chain_block_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/dap_chain_block_cache.c -------------------------------------------------------------------------------- /modules/type/blocks/dap_chain_cs_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/dap_chain_cs_blocks.c -------------------------------------------------------------------------------- /modules/type/blocks/include/dap_chain_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/include/dap_chain_block.h -------------------------------------------------------------------------------- /modules/type/blocks/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/tests/CMakeLists.txt -------------------------------------------------------------------------------- /modules/type/blocks/tests/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/blocks/tests/main.c -------------------------------------------------------------------------------- /modules/type/dag/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/dag/CMakeLists.txt -------------------------------------------------------------------------------- /modules/type/dag/dap_chain_cs_dag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/dag/dap_chain_cs_dag.c -------------------------------------------------------------------------------- /modules/type/dag/dap_chain_cs_dag_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/dag/dap_chain_cs_dag_event.c -------------------------------------------------------------------------------- /modules/type/dag/include/dap_chain_cs_dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/dag/include/dap_chain_cs_dag.h -------------------------------------------------------------------------------- /modules/type/none/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/none/CMakeLists.txt -------------------------------------------------------------------------------- /modules/type/none/dap_chain_cs_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/none/dap_chain_cs_none.c -------------------------------------------------------------------------------- /modules/type/none/include/dap_chain_cs_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/type/none/include/dap_chain_cs_none.h -------------------------------------------------------------------------------- /modules/wallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/CMakeLists.txt -------------------------------------------------------------------------------- /modules/wallet/dap_chain_coin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/dap_chain_coin.c -------------------------------------------------------------------------------- /modules/wallet/dap_chain_wallet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/dap_chain_wallet.c -------------------------------------------------------------------------------- /modules/wallet/dap_chain_wallet_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/dap_chain_wallet_cache.c -------------------------------------------------------------------------------- /modules/wallet/dap_chain_wallet_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/dap_chain_wallet_ops.c -------------------------------------------------------------------------------- /modules/wallet/dap_chain_wallet_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/dap_chain_wallet_shared.c -------------------------------------------------------------------------------- /modules/wallet/include/dap_chain_coin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/include/dap_chain_coin.h -------------------------------------------------------------------------------- /modules/wallet/include/dap_chain_wallet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/include/dap_chain_wallet.h -------------------------------------------------------------------------------- /modules/wallet/include/dap_chain_wallet_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/modules/wallet/include/dap_chain_wallet_ops.h -------------------------------------------------------------------------------- /os/win32/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/os/win32/ip.h -------------------------------------------------------------------------------- /os/win32/iphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/os/win32/iphdr.h -------------------------------------------------------------------------------- /prod_build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/build.sh -------------------------------------------------------------------------------- /prod_build/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/pack.sh -------------------------------------------------------------------------------- /prod_build/packaging/deb/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/config -------------------------------------------------------------------------------- /prod_build/packaging/deb/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/postinst -------------------------------------------------------------------------------- /prod_build/packaging/deb/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/postrm -------------------------------------------------------------------------------- /prod_build/packaging/deb/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/prerm -------------------------------------------------------------------------------- /prod_build/packaging/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/rules -------------------------------------------------------------------------------- /prod_build/packaging/deb/templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/deb/templates -------------------------------------------------------------------------------- /prod_build/packaging/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/linux.sh -------------------------------------------------------------------------------- /prod_build/packaging/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/packaging/osx.sh -------------------------------------------------------------------------------- /prod_build/targets/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/targets/android.sh -------------------------------------------------------------------------------- /prod_build/targets/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/targets/linux.sh -------------------------------------------------------------------------------- /prod_build/targets/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/targets/osx.sh -------------------------------------------------------------------------------- /prod_build/targets/windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/targets/windows.sh -------------------------------------------------------------------------------- /prod_build/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/prod_build/validate.sh -------------------------------------------------------------------------------- /project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/project.yaml -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/FIXTURES_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/FIXTURES_API.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/fixtures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fixtures/test_emission_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_emission_fixtures.c -------------------------------------------------------------------------------- /tests/fixtures/test_emission_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_emission_fixtures.h -------------------------------------------------------------------------------- /tests/fixtures/test_ledger_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_ledger_fixtures.c -------------------------------------------------------------------------------- /tests/fixtures/test_ledger_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_ledger_fixtures.h -------------------------------------------------------------------------------- /tests/fixtures/test_token_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_token_fixtures.c -------------------------------------------------------------------------------- /tests/fixtures/test_token_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_token_fixtures.h -------------------------------------------------------------------------------- /tests/fixtures/test_transaction_fixtures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_transaction_fixtures.c -------------------------------------------------------------------------------- /tests/fixtures/test_transaction_fixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/fixtures/test_transaction_fixtures.h -------------------------------------------------------------------------------- /tests/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/integration/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/unit/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit/utxo_blocking_unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demlabs-cellframe/cellframe-sdk/HEAD/tests/unit/utxo_blocking_unit_test.c --------------------------------------------------------------------------------