libarchive-static 1.0.5 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ext/extconf.rb +2 -9
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.c +6 -6
- data/ext/libarchive-0.1.1/ext/archive_read_support_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_read_support_format.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.c +1 -1
- data/ext/libarchive-0.1.1/ext/archive_write_open_rb_str.o +0 -0
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.c +5 -5
- data/ext/libarchive-0.1.1/ext/archive_write_set_compression.o +0 -0
- data/ext/libarchive-0.1.1/ext/config.h +23 -0
- data/ext/libarchive-0.1.1/ext/config.log +230 -0
- data/ext/libarchive-0.1.1/ext/config.status +671 -0
- data/ext/libarchive-0.1.1/ext/libarchive.c +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_archive.c +7 -7
- data/ext/libarchive-0.1.1/ext/libarchive_archive.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.c +6 -0
- data/ext/libarchive-0.1.1/ext/libarchive_entry.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_internal.h +0 -1
- data/ext/libarchive-0.1.1/ext/libarchive_reader.c +6 -4
- data/ext/libarchive-0.1.1/ext/libarchive_reader.o +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_ruby.so +0 -0
- data/ext/libarchive-0.1.1/ext/libarchive_win32.h +1 -1
- data/ext/libarchive-0.1.1/ext/libarchive_writer.c +2 -2
- data/ext/libarchive-0.1.1/ext/libarchive_writer.o +0 -0
- data/ext/libarchive-3.6.2/Makefile.in +16892 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_compile_flags.m4 +67 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_append_flag.m4 +71 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_check_compile_flag.m4 +74 -0
- data/ext/libarchive-3.6.2/build/autoconf/ax_require_defined.m4 +37 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/check_stdcall_func.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/compile +348 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.guess +1754 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.rpath +696 -0
- data/ext/libarchive-3.6.2/build/autoconf/config.sub +1890 -0
- data/ext/libarchive-3.6.2/build/autoconf/depcomp +791 -0
- data/ext/libarchive-3.6.2/build/autoconf/iconv.m4 +271 -0
- data/ext/libarchive-3.6.2/build/autoconf/install-sh +541 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/autoconf/la_uid_t.m4 +0 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-ld.m4 +109 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-link.m4 +777 -0
- data/ext/libarchive-3.6.2/build/autoconf/lib-prefix.m4 +224 -0
- data/ext/libarchive-3.6.2/build/autoconf/ltmain.sh +11251 -0
- data/ext/libarchive-3.6.2/build/autoconf/m4_ax_compile_check_sizeof.m4 +115 -0
- data/ext/libarchive-3.6.2/build/autoconf/missing +215 -0
- data/ext/libarchive-3.6.2/build/autoconf/test-driver +153 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/build/pkgconfig/libarchive.pc.in +4 -1
- data/ext/libarchive-3.6.2/config.h.in +1504 -0
- data/ext/libarchive-3.6.2/configure +25558 -0
- data/ext/libarchive-3.6.2/libarchive/archive.h +1212 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl.c +2097 -0
- data/ext/libarchive-3.6.2/libarchive/archive_acl_private.h +83 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2.h +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2_impl.h +161 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2s_ref.c +369 -0
- data/ext/libarchive-3.6.2/libarchive/archive_blake2sp_ref.c +361 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_check_magic.c +63 -22
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline.c +227 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cmdline_private.h +47 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_crc32.h +17 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor.c +534 -0
- data/ext/libarchive-3.6.2/libarchive/archive_cryptor_private.h +188 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest.c +1505 -0
- data/ext/libarchive-3.6.2/libarchive/archive_digest_private.h +416 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_darwin.c +559 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_freebsd.c +712 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_linux.c +760 -0
- data/ext/libarchive-3.6.2/libarchive/archive_disk_acl_sunos.c +824 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_endian.h +48 -15
- data/ext/libarchive-3.6.2/libarchive/archive_entry.c +2149 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry.h +305 -106
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_bhfi.c +5 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_copy_stat.c +9 -3
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_link_resolver.c +104 -62
- data/ext/libarchive-3.6.2/libarchive/archive_entry_locale.h +92 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_private.h +65 -49
- data/ext/libarchive-3.6.2/libarchive/archive_entry_sparse.c +156 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_stat.c +6 -6
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_strmode.c +1 -1
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_entry_xattr.c +4 -6
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.c +1165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_getdate.h +39 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac.c +334 -0
- data/ext/libarchive-3.6.2/libarchive/archive_hmac_private.h +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_match.c +1875 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_evp_private.h +53 -0
- data/ext/libarchive-3.6.2/libarchive/archive_openssl_hmac_private.h +54 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options.c +218 -0
- data/ext/libarchive-3.6.2/libarchive/archive_options_private.h +51 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.c +337 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pack_dev.h +49 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.c +463 -0
- data/ext/libarchive-3.6.2/libarchive/archive_pathmatch.h +52 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_platform.h +77 -9
- data/ext/libarchive-3.6.2/libarchive/archive_platform_acl.h +55 -0
- data/ext/libarchive-3.6.2/libarchive/archive_platform_xattr.h +47 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7.c +1168 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd7_private.h +119 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8.c +1287 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd8_private.h +148 -0
- data/ext/libarchive-3.6.2/libarchive/archive_ppmd_private.h +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_private.h +74 -18
- data/ext/libarchive-3.6.2/libarchive/archive_random.c +272 -0
- data/ext/libarchive-3.6.2/libarchive/archive_random_private.h +36 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.c +709 -0
- data/ext/libarchive-3.6.2/libarchive/archive_rb.h +113 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read.c +1756 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_add_passphrase.c +190 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_append_filter.c +204 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_data_into_fd.c +64 -18
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_entry_from_file.c +1086 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_posix.c +2732 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_private.h +40 -4
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_disk_set_standard_lookup.c +21 -11
- data/ext/libarchive-3.6.2/libarchive/archive_read_disk_windows.c +2479 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_extract.c +60 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_extract.c → libarchive-3.6.2/libarchive/archive_read_extract2.c} +34 -61
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_fd.c +70 -49
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_file.c +38 -23
- data/ext/libarchive-3.6.2/libarchive/archive_read_open_filename.c +586 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_open_memory.c +58 -28
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_private.h +127 -59
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_format.c +117 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_set_options.c +133 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_all.c → libarchive-3.6.2/libarchive/archive_read_support_filter_all.c} +35 -10
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_by_code.c +83 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_bzip2.c → libarchive-3.6.2/libarchive/archive_read_support_filter_bzip2.c} +38 -26
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_compress.c → libarchive-3.6.2/libarchive/archive_read_support_filter_compress.c} +52 -44
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_grzip.c +112 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_gzip.c → libarchive-3.6.2/libarchive/archive_read_support_filter_gzip.c} +108 -37
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lrzip.c +122 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lz4.c +742 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_lzop.c +499 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_none.c → libarchive-3.6.2/libarchive/archive_read_support_filter_none.c} +15 -3
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_program.c → libarchive-3.6.2/libarchive/archive_read_support_filter_program.c} +114 -77
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_rpm.c → libarchive-3.6.2/libarchive/archive_read_support_filter_rpm.c} +31 -31
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_uu.c → libarchive-3.6.2/libarchive/archive_read_support_filter_uu.c} +141 -85
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_compression_xz.c → libarchive-3.6.2/libarchive/archive_read_support_filter_xz.c} +369 -284
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_filter_zstd.c +297 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_7zip.c +3900 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_all.c +89 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_ar.c +126 -72
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_by_code.c +92 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cab.c +3228 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_cpio.c +1104 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_empty.c +14 -11
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_iso9660.c +990 -541
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_lha.c +2916 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_mtree.c +2150 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar.c +3797 -0
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_rar5.c +4251 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_raw.c +38 -31
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_tar.c +1157 -629
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_warc.c +848 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_read_support_format_xar.c +439 -258
- data/ext/libarchive-3.6.2/libarchive/archive_read_support_format_zip.c +4270 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.c +4240 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string.h +243 -0
- data/ext/libarchive-3.6.2/libarchive/archive_string_composition.h +2292 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_string_sprintf.c +44 -16
- data/ext/libarchive-3.6.2/libarchive/archive_util.c +655 -0
- data/ext/libarchive-3.6.2/libarchive/archive_version_details.c +151 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_virtual.c +85 -16
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.c +214 -541
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_windows.h +74 -106
- data/ext/libarchive-3.6.2/libarchive/archive_write.c +828 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter.c +72 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_b64encode.c +304 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_by_name.c +77 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_bzip2.c +401 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_write_set_compression_compress.c → libarchive-3.6.2/libarchive/archive_write_add_filter_compress.c} +86 -131
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_grzip.c +135 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_gzip.c +442 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lrzip.c +197 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lz4.c +700 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_lzop.c +478 -0
- data/ext/{libarchive-2.8.4/libarchive/archive_read_support_format_all.c → libarchive-3.6.2/libarchive/archive_write_add_filter_none.c} +11 -11
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_program.c +391 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_uuencode.c +295 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_xz.c +545 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_add_filter_zstd.c +418 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_posix.c +4711 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_private.h +9 -2
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_disk_set_standard_lookup.c +30 -29
- data/ext/libarchive-3.6.2/libarchive/archive_write_disk_windows.c +2842 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_fd.c +15 -10
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_file.c +15 -9
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_filename.c +128 -20
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_open_memory.c +7 -18
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_private.h +72 -29
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format.c +56 -3
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_7zip.c +2322 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ar.c +54 -34
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_by_name.c +20 -2
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio.c +11 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_binary.c +610 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_newc.c +457 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_cpio_odc.c +500 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_filter_by_ext.c +142 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_gnutar.c +755 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_iso9660.c +8165 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_mtree.c +2217 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_pax.c +1049 -387
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_private.h +42 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_raw.c +125 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_shar.c +62 -47
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/archive_write_set_format_ustar.c +279 -108
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_v7tar.c +638 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_warc.c +453 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_xar.c +3259 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_format_zip.c +1704 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_options.c +130 -0
- data/ext/libarchive-3.6.2/libarchive/archive_write_set_passphrase.c +95 -0
- data/ext/libarchive-3.6.2/libarchive/archive_xxhash.h +48 -0
- data/ext/libarchive-3.6.2/libarchive/config_freebsd.h +271 -0
- data/ext/{libarchive-2.8.4 → libarchive-3.6.2}/libarchive/filter_fork.h +10 -5
- data/ext/{libarchive-2.8.4/libarchive/filter_fork.c → libarchive-3.6.2/libarchive/filter_fork_posix.c} +98 -19
- data/ext/libarchive-3.6.2/libarchive/filter_fork_windows.c +236 -0
- data/ext/libarchive-3.6.2/libarchive/xxhash.c +525 -0
- data/ext/libarchive-static-makefile +144 -80
- data/ext/libarchive-static-wrapper-makefile +1 -1
- data/ext/zlib-1.2.13/Makefile.in +404 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/adler32.c +51 -34
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/compress.c +27 -21
- data/ext/zlib-1.2.13/configure +922 -0
- data/ext/zlib-1.2.13/crc32.c +1125 -0
- data/ext/zlib-1.2.13/crc32.h +9446 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.c +842 -459
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/deflate.h +37 -33
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzclose.c +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzguts.h +103 -16
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/gzlib.c +155 -53
- data/ext/zlib-1.2.13/gzread.c +650 -0
- data/ext/zlib-1.2.13/gzwrite.c +677 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/infback.c +24 -12
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.c +49 -66
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffast.h +0 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inffixed.h +3 -3
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.c +209 -94
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inflate.h +9 -5
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.c +24 -50
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/inftrees.h +1 -1
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.c +135 -198
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/trees.h +0 -0
- data/ext/zlib-1.2.13/uncompr.c +93 -0
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zconf.h +182 -63
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zlib.h +617 -295
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.c +50 -41
- data/ext/{zlib-1.2.5 → zlib-1.2.13}/zutil.h +83 -82
- metadata +244 -137
- data/ext/libarchive-0.1.1/libarchive.c +0 -1762
- data/ext/libarchive-2.8.4/Makefile.in +0 -7076
- data/ext/libarchive-2.8.4/build/autoconf/compile +0 -143
- data/ext/libarchive-2.8.4/build/autoconf/config.guess +0 -1502
- data/ext/libarchive-2.8.4/build/autoconf/config.sub +0 -1708
- data/ext/libarchive-2.8.4/build/autoconf/depcomp +0 -630
- data/ext/libarchive-2.8.4/build/autoconf/install-sh +0 -291
- data/ext/libarchive-2.8.4/build/autoconf/ltmain.sh +0 -8406
- data/ext/libarchive-2.8.4/build/autoconf/missing +0 -376
- data/ext/libarchive-2.8.4/config.h.in +0 -772
- data/ext/libarchive-2.8.4/configure +0 -17916
- data/ext/libarchive-2.8.4/libarchive/archive.h +0 -741
- data/ext/libarchive-2.8.4/libarchive/archive_entry.c +0 -2202
- data/ext/libarchive-2.8.4/libarchive/archive_hash.h +0 -281
- data/ext/libarchive-2.8.4/libarchive/archive_read.c +0 -1249
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk.c +0 -198
- data/ext/libarchive-2.8.4/libarchive/archive_read_disk_entry_from_file.c +0 -570
- data/ext/libarchive-2.8.4/libarchive/archive_read_open_filename.c +0 -272
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_cpio.c +0 -777
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_mtree.c +0 -1304
- data/ext/libarchive-2.8.4/libarchive/archive_read_support_format_zip.c +0 -903
- data/ext/libarchive-2.8.4/libarchive/archive_string.c +0 -453
- data/ext/libarchive-2.8.4/libarchive/archive_string.h +0 -148
- data/ext/libarchive-2.8.4/libarchive/archive_util.c +0 -391
- data/ext/libarchive-2.8.4/libarchive/archive_write.c +0 -466
- data/ext/libarchive-2.8.4/libarchive/archive_write_disk.c +0 -2628
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_bzip2.c +0 -408
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_gzip.c +0 -477
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_none.c +0 -257
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_program.c +0 -347
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_compression_xz.c +0 -438
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio.c +0 -344
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_cpio_newc.c +0 -295
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_mtree.c +0 -1050
- data/ext/libarchive-2.8.4/libarchive/archive_write_set_format_zip.c +0 -667
- data/ext/libarchive-2.8.4/libarchive/config_freebsd.h +0 -154
- data/ext/libarchive-2.8.4/libarchive/filter_fork_windows.c +0 -113
- data/ext/zlib-1.2.5/Makefile.in +0 -257
- data/ext/zlib-1.2.5/configure +0 -596
- data/ext/zlib-1.2.5/crc32.c +0 -442
- data/ext/zlib-1.2.5/crc32.h +0 -441
- data/ext/zlib-1.2.5/example.c +0 -565
- data/ext/zlib-1.2.5/gzread.c +0 -653
- data/ext/zlib-1.2.5/gzwrite.c +0 -531
- data/ext/zlib-1.2.5/minigzip.c +0 -440
- data/ext/zlib-1.2.5/uncompr.c +0 -59
@@ -0,0 +1,39 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2003-2015 Tim Kientzle
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions
|
7
|
+
* are met:
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer in the
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
13
|
+
*
|
14
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
+
*
|
25
|
+
* $FreeBSD$
|
26
|
+
*/
|
27
|
+
|
28
|
+
#ifndef ARCHIVE_GETDATE_H_INCLUDED
|
29
|
+
#define ARCHIVE_GETDATE_H_INCLUDED
|
30
|
+
|
31
|
+
#ifndef __LIBARCHIVE_BUILD
|
32
|
+
#error This header is only to be used internally to libarchive.
|
33
|
+
#endif
|
34
|
+
|
35
|
+
#include <time.h>
|
36
|
+
|
37
|
+
time_t __archive_get_date(time_t now, const char *);
|
38
|
+
|
39
|
+
#endif
|
@@ -0,0 +1,334 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2014 Michihiro NAKAJIMA
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions
|
7
|
+
* are met:
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer in the
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
13
|
+
*
|
14
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#include "archive_platform.h"
|
27
|
+
|
28
|
+
#ifdef HAVE_STRING_H
|
29
|
+
#include <string.h>
|
30
|
+
#endif
|
31
|
+
#include "archive.h"
|
32
|
+
#include "archive_hmac_private.h"
|
33
|
+
|
34
|
+
/*
|
35
|
+
* On systems that do not support any recognized crypto libraries,
|
36
|
+
* the archive_hmac.c file is expected to define no usable symbols.
|
37
|
+
*
|
38
|
+
* But some compilers and linkers choke on empty object files, so
|
39
|
+
* define a public symbol that will always exist. This could
|
40
|
+
* be removed someday if this file gains another always-present
|
41
|
+
* symbol definition.
|
42
|
+
*/
|
43
|
+
int __libarchive_hmac_build_hack(void) {
|
44
|
+
return 0;
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
#ifdef ARCHIVE_HMAC_USE_Apple_CommonCrypto
|
49
|
+
|
50
|
+
static int
|
51
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
52
|
+
{
|
53
|
+
CCHmacInit(ctx, kCCHmacAlgSHA1, key, key_len);
|
54
|
+
return 0;
|
55
|
+
}
|
56
|
+
|
57
|
+
static void
|
58
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
59
|
+
size_t data_len)
|
60
|
+
{
|
61
|
+
CCHmacUpdate(ctx, data, data_len);
|
62
|
+
}
|
63
|
+
|
64
|
+
static void
|
65
|
+
__hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
66
|
+
{
|
67
|
+
CCHmacFinal(ctx, out);
|
68
|
+
*out_len = 20;
|
69
|
+
}
|
70
|
+
|
71
|
+
static void
|
72
|
+
__hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
73
|
+
{
|
74
|
+
memset(ctx, 0, sizeof(*ctx));
|
75
|
+
}
|
76
|
+
|
77
|
+
#elif defined(_WIN32) && !defined(__CYGWIN__) && defined(HAVE_BCRYPT_H)
|
78
|
+
|
79
|
+
#ifndef BCRYPT_HASH_REUSABLE_FLAG
|
80
|
+
# define BCRYPT_HASH_REUSABLE_FLAG 0x00000020
|
81
|
+
#endif
|
82
|
+
|
83
|
+
static int
|
84
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
85
|
+
{
|
86
|
+
#ifdef __GNUC__
|
87
|
+
#pragma GCC diagnostic ignored "-Wcast-qual"
|
88
|
+
#endif
|
89
|
+
BCRYPT_ALG_HANDLE hAlg;
|
90
|
+
BCRYPT_HASH_HANDLE hHash;
|
91
|
+
DWORD hash_len;
|
92
|
+
PBYTE hash;
|
93
|
+
ULONG result;
|
94
|
+
NTSTATUS status;
|
95
|
+
|
96
|
+
ctx->hAlg = NULL;
|
97
|
+
status = BCryptOpenAlgorithmProvider(&hAlg, BCRYPT_SHA1_ALGORITHM,
|
98
|
+
MS_PRIMITIVE_PROVIDER, BCRYPT_ALG_HANDLE_HMAC_FLAG);
|
99
|
+
if (!BCRYPT_SUCCESS(status))
|
100
|
+
return -1;
|
101
|
+
status = BCryptGetProperty(hAlg, BCRYPT_HASH_LENGTH, (PUCHAR)&hash_len,
|
102
|
+
sizeof(hash_len), &result, 0);
|
103
|
+
if (!BCRYPT_SUCCESS(status)) {
|
104
|
+
BCryptCloseAlgorithmProvider(hAlg, 0);
|
105
|
+
return -1;
|
106
|
+
}
|
107
|
+
hash = (PBYTE)HeapAlloc(GetProcessHeap(), 0, hash_len);
|
108
|
+
if (hash == NULL) {
|
109
|
+
BCryptCloseAlgorithmProvider(hAlg, 0);
|
110
|
+
return -1;
|
111
|
+
}
|
112
|
+
status = BCryptCreateHash(hAlg, &hHash, NULL, 0,
|
113
|
+
(PUCHAR)key, (ULONG)key_len, BCRYPT_HASH_REUSABLE_FLAG);
|
114
|
+
if (!BCRYPT_SUCCESS(status)) {
|
115
|
+
BCryptCloseAlgorithmProvider(hAlg, 0);
|
116
|
+
HeapFree(GetProcessHeap(), 0, hash);
|
117
|
+
return -1;
|
118
|
+
}
|
119
|
+
|
120
|
+
ctx->hAlg = hAlg;
|
121
|
+
ctx->hHash = hHash;
|
122
|
+
ctx->hash_len = hash_len;
|
123
|
+
ctx->hash = hash;
|
124
|
+
|
125
|
+
return 0;
|
126
|
+
}
|
127
|
+
|
128
|
+
static void
|
129
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
130
|
+
size_t data_len)
|
131
|
+
{
|
132
|
+
BCryptHashData(ctx->hHash, (PUCHAR)(uintptr_t)data, (ULONG)data_len, 0);
|
133
|
+
}
|
134
|
+
|
135
|
+
static void
|
136
|
+
__hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
137
|
+
{
|
138
|
+
BCryptFinishHash(ctx->hHash, ctx->hash, ctx->hash_len, 0);
|
139
|
+
if (ctx->hash_len == *out_len)
|
140
|
+
memcpy(out, ctx->hash, *out_len);
|
141
|
+
}
|
142
|
+
|
143
|
+
static void
|
144
|
+
__hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
145
|
+
{
|
146
|
+
if (ctx->hAlg != NULL) {
|
147
|
+
BCryptCloseAlgorithmProvider(ctx->hAlg, 0);
|
148
|
+
HeapFree(GetProcessHeap(), 0, ctx->hash);
|
149
|
+
ctx->hAlg = NULL;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
#elif defined(HAVE_LIBMBEDCRYPTO) && defined(HAVE_MBEDTLS_MD_H)
|
154
|
+
|
155
|
+
static int
|
156
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
157
|
+
{
|
158
|
+
const mbedtls_md_info_t *info;
|
159
|
+
int ret;
|
160
|
+
|
161
|
+
mbedtls_md_init(ctx);
|
162
|
+
info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA1);
|
163
|
+
if (info == NULL) {
|
164
|
+
mbedtls_md_free(ctx);
|
165
|
+
return (-1);
|
166
|
+
}
|
167
|
+
ret = mbedtls_md_setup(ctx, info, 1);
|
168
|
+
if (ret != 0) {
|
169
|
+
mbedtls_md_free(ctx);
|
170
|
+
return (-1);
|
171
|
+
}
|
172
|
+
ret = mbedtls_md_hmac_starts(ctx, key, key_len);
|
173
|
+
if (ret != 0) {
|
174
|
+
mbedtls_md_free(ctx);
|
175
|
+
return (-1);
|
176
|
+
}
|
177
|
+
return 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
static void
|
181
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
182
|
+
size_t data_len)
|
183
|
+
{
|
184
|
+
mbedtls_md_hmac_update(ctx, data, data_len);
|
185
|
+
}
|
186
|
+
|
187
|
+
static void __hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
188
|
+
{
|
189
|
+
(void)out_len; /* UNUSED */
|
190
|
+
|
191
|
+
mbedtls_md_hmac_finish(ctx, out);
|
192
|
+
}
|
193
|
+
|
194
|
+
static void __hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
195
|
+
{
|
196
|
+
mbedtls_md_free(ctx);
|
197
|
+
memset(ctx, 0, sizeof(*ctx));
|
198
|
+
}
|
199
|
+
|
200
|
+
#elif defined(HAVE_LIBNETTLE) && defined(HAVE_NETTLE_HMAC_H)
|
201
|
+
|
202
|
+
static int
|
203
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
204
|
+
{
|
205
|
+
hmac_sha1_set_key(ctx, key_len, key);
|
206
|
+
return 0;
|
207
|
+
}
|
208
|
+
|
209
|
+
static void
|
210
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
211
|
+
size_t data_len)
|
212
|
+
{
|
213
|
+
hmac_sha1_update(ctx, data_len, data);
|
214
|
+
}
|
215
|
+
|
216
|
+
static void
|
217
|
+
__hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
218
|
+
{
|
219
|
+
hmac_sha1_digest(ctx, (unsigned)*out_len, out);
|
220
|
+
}
|
221
|
+
|
222
|
+
static void
|
223
|
+
__hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
224
|
+
{
|
225
|
+
memset(ctx, 0, sizeof(*ctx));
|
226
|
+
}
|
227
|
+
|
228
|
+
#elif defined(HAVE_LIBCRYPTO)
|
229
|
+
|
230
|
+
static int
|
231
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
232
|
+
{
|
233
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
234
|
+
OSSL_PARAM params[2];
|
235
|
+
|
236
|
+
EVP_MAC *mac = EVP_MAC_fetch(NULL, "HMAC", NULL);
|
237
|
+
*ctx = EVP_MAC_CTX_new(mac);
|
238
|
+
if (*ctx == NULL)
|
239
|
+
return -1;
|
240
|
+
EVP_MAC_free(mac);
|
241
|
+
params[0] = OSSL_PARAM_construct_utf8_string("digest", "SHA1", 0);
|
242
|
+
params[1] = OSSL_PARAM_construct_end();
|
243
|
+
EVP_MAC_init(*ctx, key, key_len, params);
|
244
|
+
#else
|
245
|
+
*ctx = HMAC_CTX_new();
|
246
|
+
if (*ctx == NULL)
|
247
|
+
return -1;
|
248
|
+
HMAC_Init_ex(*ctx, key, key_len, EVP_sha1(), NULL);
|
249
|
+
#endif
|
250
|
+
return 0;
|
251
|
+
}
|
252
|
+
|
253
|
+
static void
|
254
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
255
|
+
size_t data_len)
|
256
|
+
{
|
257
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
258
|
+
EVP_MAC_update(*ctx, data, data_len);
|
259
|
+
#else
|
260
|
+
HMAC_Update(*ctx, data, data_len);
|
261
|
+
#endif
|
262
|
+
}
|
263
|
+
|
264
|
+
static void
|
265
|
+
__hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
266
|
+
{
|
267
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
268
|
+
size_t len = *out_len;
|
269
|
+
#else
|
270
|
+
unsigned int len = (unsigned int)*out_len;
|
271
|
+
#endif
|
272
|
+
|
273
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
274
|
+
EVP_MAC_final(*ctx, out, &len, *out_len);
|
275
|
+
#else
|
276
|
+
HMAC_Final(*ctx, out, &len);
|
277
|
+
#endif
|
278
|
+
*out_len = len;
|
279
|
+
}
|
280
|
+
|
281
|
+
static void
|
282
|
+
__hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
283
|
+
{
|
284
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
285
|
+
EVP_MAC_CTX_free(*ctx);
|
286
|
+
#else
|
287
|
+
HMAC_CTX_free(*ctx);
|
288
|
+
#endif
|
289
|
+
*ctx = NULL;
|
290
|
+
}
|
291
|
+
|
292
|
+
#else
|
293
|
+
|
294
|
+
/* Stub */
|
295
|
+
static int
|
296
|
+
__hmac_sha1_init(archive_hmac_sha1_ctx *ctx, const uint8_t *key, size_t key_len)
|
297
|
+
{
|
298
|
+
(void)ctx;/* UNUSED */
|
299
|
+
(void)key;/* UNUSED */
|
300
|
+
(void)key_len;/* UNUSED */
|
301
|
+
return -1;
|
302
|
+
}
|
303
|
+
|
304
|
+
static void
|
305
|
+
__hmac_sha1_update(archive_hmac_sha1_ctx *ctx, const uint8_t *data,
|
306
|
+
size_t data_len)
|
307
|
+
{
|
308
|
+
(void)ctx;/* UNUSED */
|
309
|
+
(void)data;/* UNUSED */
|
310
|
+
(void)data_len;/* UNUSED */
|
311
|
+
}
|
312
|
+
|
313
|
+
static void
|
314
|
+
__hmac_sha1_final(archive_hmac_sha1_ctx *ctx, uint8_t *out, size_t *out_len)
|
315
|
+
{
|
316
|
+
(void)ctx;/* UNUSED */
|
317
|
+
(void)out;/* UNUSED */
|
318
|
+
(void)out_len;/* UNUSED */
|
319
|
+
}
|
320
|
+
|
321
|
+
static void
|
322
|
+
__hmac_sha1_cleanup(archive_hmac_sha1_ctx *ctx)
|
323
|
+
{
|
324
|
+
(void)ctx;/* UNUSED */
|
325
|
+
}
|
326
|
+
|
327
|
+
#endif
|
328
|
+
|
329
|
+
const struct archive_hmac __archive_hmac = {
|
330
|
+
&__hmac_sha1_init,
|
331
|
+
&__hmac_sha1_update,
|
332
|
+
&__hmac_sha1_final,
|
333
|
+
&__hmac_sha1_cleanup,
|
334
|
+
};
|
@@ -0,0 +1,117 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2014 Michihiro NAKAJIMA
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions
|
7
|
+
* are met:
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer in the
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
13
|
+
*
|
14
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
15
|
+
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
16
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
17
|
+
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
18
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
19
|
+
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
20
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
21
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
22
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
23
|
+
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
24
|
+
*/
|
25
|
+
|
26
|
+
#ifndef ARCHIVE_HMAC_PRIVATE_H_INCLUDED
|
27
|
+
#define ARCHIVE_HMAC_PRIVATE_H_INCLUDED
|
28
|
+
|
29
|
+
#ifndef __LIBARCHIVE_BUILD
|
30
|
+
#error This header is only to be used internally to libarchive.
|
31
|
+
#endif
|
32
|
+
/*
|
33
|
+
* On systems that do not support any recognized crypto libraries,
|
34
|
+
* the archive_hmac.c file is expected to define no usable symbols.
|
35
|
+
*
|
36
|
+
* But some compilers and linkers choke on empty object files, so
|
37
|
+
* define a public symbol that will always exist. This could
|
38
|
+
* be removed someday if this file gains another always-present
|
39
|
+
* symbol definition.
|
40
|
+
*/
|
41
|
+
int __libarchive_hmac_build_hack(void);
|
42
|
+
|
43
|
+
#ifdef __APPLE__
|
44
|
+
# include <AvailabilityMacros.h>
|
45
|
+
# if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
|
46
|
+
# define ARCHIVE_HMAC_USE_Apple_CommonCrypto
|
47
|
+
# endif
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#ifdef ARCHIVE_HMAC_USE_Apple_CommonCrypto
|
51
|
+
#include <CommonCrypto/CommonHMAC.h>
|
52
|
+
|
53
|
+
typedef CCHmacContext archive_hmac_sha1_ctx;
|
54
|
+
|
55
|
+
#elif defined(_WIN32) && !defined(__CYGWIN__) && defined(HAVE_BCRYPT_H)
|
56
|
+
#include <bcrypt.h>
|
57
|
+
|
58
|
+
typedef struct {
|
59
|
+
BCRYPT_ALG_HANDLE hAlg;
|
60
|
+
BCRYPT_HASH_HANDLE hHash;
|
61
|
+
DWORD hash_len;
|
62
|
+
PBYTE hash;
|
63
|
+
|
64
|
+
} archive_hmac_sha1_ctx;
|
65
|
+
|
66
|
+
#elif defined(HAVE_LIBMBEDCRYPTO) && defined(HAVE_MBEDTLS_MD_H)
|
67
|
+
#include <mbedtls/md.h>
|
68
|
+
|
69
|
+
typedef mbedtls_md_context_t archive_hmac_sha1_ctx;
|
70
|
+
|
71
|
+
#elif defined(HAVE_LIBNETTLE) && defined(HAVE_NETTLE_HMAC_H)
|
72
|
+
#include <nettle/hmac.h>
|
73
|
+
|
74
|
+
typedef struct hmac_sha1_ctx archive_hmac_sha1_ctx;
|
75
|
+
|
76
|
+
#elif defined(HAVE_LIBCRYPTO)
|
77
|
+
#include <openssl/opensslv.h>
|
78
|
+
#include <openssl/hmac.h>
|
79
|
+
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
80
|
+
typedef EVP_MAC_CTX *archive_hmac_sha1_ctx;
|
81
|
+
|
82
|
+
#else
|
83
|
+
#include "archive_openssl_hmac_private.h"
|
84
|
+
|
85
|
+
typedef HMAC_CTX* archive_hmac_sha1_ctx;
|
86
|
+
#endif
|
87
|
+
|
88
|
+
#else
|
89
|
+
|
90
|
+
typedef int archive_hmac_sha1_ctx;
|
91
|
+
|
92
|
+
#endif
|
93
|
+
|
94
|
+
|
95
|
+
/* HMAC */
|
96
|
+
#define archive_hmac_sha1_init(ctx, key, key_len)\
|
97
|
+
__archive_hmac.__hmac_sha1_init(ctx, key, key_len)
|
98
|
+
#define archive_hmac_sha1_update(ctx, data, data_len)\
|
99
|
+
__archive_hmac.__hmac_sha1_update(ctx, data, data_len)
|
100
|
+
#define archive_hmac_sha1_final(ctx, out, out_len)\
|
101
|
+
__archive_hmac.__hmac_sha1_final(ctx, out, out_len)
|
102
|
+
#define archive_hmac_sha1_cleanup(ctx)\
|
103
|
+
__archive_hmac.__hmac_sha1_cleanup(ctx)
|
104
|
+
|
105
|
+
|
106
|
+
struct archive_hmac {
|
107
|
+
/* HMAC */
|
108
|
+
int (*__hmac_sha1_init)(archive_hmac_sha1_ctx *, const uint8_t *,
|
109
|
+
size_t);
|
110
|
+
void (*__hmac_sha1_update)(archive_hmac_sha1_ctx *, const uint8_t *,
|
111
|
+
size_t);
|
112
|
+
void (*__hmac_sha1_final)(archive_hmac_sha1_ctx *, uint8_t *, size_t *);
|
113
|
+
void (*__hmac_sha1_cleanup)(archive_hmac_sha1_ctx *);
|
114
|
+
};
|
115
|
+
|
116
|
+
extern const struct archive_hmac __archive_hmac;
|
117
|
+
#endif /* ARCHIVE_HMAC_PRIVATE_H_INCLUDED */
|