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,83 @@
|
|
1
|
+
/*-
|
2
|
+
* Copyright (c) 2003-2010 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_ACL_PRIVATE_H_INCLUDED
|
29
|
+
#define ARCHIVE_ACL_PRIVATE_H_INCLUDED
|
30
|
+
|
31
|
+
#ifndef __LIBARCHIVE_BUILD
|
32
|
+
#error This header is only to be used internally to libarchive.
|
33
|
+
#endif
|
34
|
+
|
35
|
+
#include "archive_string.h"
|
36
|
+
|
37
|
+
struct archive_acl_entry {
|
38
|
+
struct archive_acl_entry *next;
|
39
|
+
int type; /* E.g., access or default */
|
40
|
+
int tag; /* E.g., user/group/other/mask */
|
41
|
+
int permset; /* r/w/x bits */
|
42
|
+
int id; /* uid/gid for user/group */
|
43
|
+
struct archive_mstring name; /* uname/gname */
|
44
|
+
};
|
45
|
+
|
46
|
+
struct archive_acl {
|
47
|
+
mode_t mode;
|
48
|
+
struct archive_acl_entry *acl_head;
|
49
|
+
struct archive_acl_entry *acl_p;
|
50
|
+
int acl_state; /* See acl_next for details. */
|
51
|
+
wchar_t *acl_text_w;
|
52
|
+
char *acl_text;
|
53
|
+
int acl_types;
|
54
|
+
};
|
55
|
+
|
56
|
+
void archive_acl_clear(struct archive_acl *);
|
57
|
+
void archive_acl_copy(struct archive_acl *, struct archive_acl *);
|
58
|
+
int archive_acl_count(struct archive_acl *, int);
|
59
|
+
int archive_acl_types(struct archive_acl *);
|
60
|
+
int archive_acl_reset(struct archive_acl *, int);
|
61
|
+
int archive_acl_next(struct archive *, struct archive_acl *, int,
|
62
|
+
int *, int *, int *, int *, const char **);
|
63
|
+
|
64
|
+
int archive_acl_add_entry(struct archive_acl *, int, int, int, int, const char *);
|
65
|
+
int archive_acl_add_entry_w_len(struct archive_acl *,
|
66
|
+
int, int, int, int, const wchar_t *, size_t);
|
67
|
+
int archive_acl_add_entry_len(struct archive_acl *,
|
68
|
+
int, int, int, int, const char *, size_t);
|
69
|
+
|
70
|
+
wchar_t *archive_acl_to_text_w(struct archive_acl *, ssize_t *, int,
|
71
|
+
struct archive *);
|
72
|
+
char *archive_acl_to_text_l(struct archive_acl *, ssize_t *, int,
|
73
|
+
struct archive_string_conv *);
|
74
|
+
|
75
|
+
/*
|
76
|
+
* ACL text parser.
|
77
|
+
*/
|
78
|
+
int archive_acl_from_text_w(struct archive_acl *, const wchar_t * /* wtext */,
|
79
|
+
int /* type */);
|
80
|
+
int archive_acl_from_text_l(struct archive_acl *, const char * /* text */,
|
81
|
+
int /* type */, struct archive_string_conv *);
|
82
|
+
|
83
|
+
#endif /* ARCHIVE_ENTRY_PRIVATE_H_INCLUDED */
|
@@ -0,0 +1,197 @@
|
|
1
|
+
/*
|
2
|
+
BLAKE2 reference source code package - reference C implementations
|
3
|
+
|
4
|
+
Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You may use this under the
|
5
|
+
terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at
|
6
|
+
your option. The terms of these licenses can be found at:
|
7
|
+
|
8
|
+
- CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
|
9
|
+
- OpenSSL license : https://www.openssl.org/source/license.html
|
10
|
+
- Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
|
12
|
+
More information about the BLAKE2 hash function can be found at
|
13
|
+
https://blake2.net.
|
14
|
+
*/
|
15
|
+
|
16
|
+
#ifndef ARCHIVE_BLAKE2_H
|
17
|
+
#define ARCHIVE_BLAKE2_H
|
18
|
+
|
19
|
+
#include <stddef.h>
|
20
|
+
#include <stdint.h>
|
21
|
+
|
22
|
+
#if defined(_MSC_VER)
|
23
|
+
#define BLAKE2_PACKED(x) __pragma(pack(push, 1)) x __pragma(pack(pop))
|
24
|
+
#elif defined(__GNUC__)
|
25
|
+
#define BLAKE2_PACKED(x) x __attribute__((packed))
|
26
|
+
#else
|
27
|
+
#define BLAKE2_PACKED(x) _Pragma("pack 1") x _Pragma("pack 0")
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#if defined(__cplusplus)
|
31
|
+
extern "C" {
|
32
|
+
#endif
|
33
|
+
|
34
|
+
enum blake2s_constant
|
35
|
+
{
|
36
|
+
BLAKE2S_BLOCKBYTES = 64,
|
37
|
+
BLAKE2S_OUTBYTES = 32,
|
38
|
+
BLAKE2S_KEYBYTES = 32,
|
39
|
+
BLAKE2S_SALTBYTES = 8,
|
40
|
+
BLAKE2S_PERSONALBYTES = 8
|
41
|
+
};
|
42
|
+
|
43
|
+
enum blake2b_constant
|
44
|
+
{
|
45
|
+
BLAKE2B_BLOCKBYTES = 128,
|
46
|
+
BLAKE2B_OUTBYTES = 64,
|
47
|
+
BLAKE2B_KEYBYTES = 64,
|
48
|
+
BLAKE2B_SALTBYTES = 16,
|
49
|
+
BLAKE2B_PERSONALBYTES = 16
|
50
|
+
};
|
51
|
+
|
52
|
+
typedef struct blake2s_state__
|
53
|
+
{
|
54
|
+
uint32_t h[8];
|
55
|
+
uint32_t t[2];
|
56
|
+
uint32_t f[2];
|
57
|
+
uint8_t buf[BLAKE2S_BLOCKBYTES];
|
58
|
+
size_t buflen;
|
59
|
+
size_t outlen;
|
60
|
+
uint8_t last_node;
|
61
|
+
} blake2s_state;
|
62
|
+
|
63
|
+
typedef struct blake2b_state__
|
64
|
+
{
|
65
|
+
uint64_t h[8];
|
66
|
+
uint64_t t[2];
|
67
|
+
uint64_t f[2];
|
68
|
+
uint8_t buf[BLAKE2B_BLOCKBYTES];
|
69
|
+
size_t buflen;
|
70
|
+
size_t outlen;
|
71
|
+
uint8_t last_node;
|
72
|
+
} blake2b_state;
|
73
|
+
|
74
|
+
typedef struct blake2sp_state__
|
75
|
+
{
|
76
|
+
blake2s_state S[8][1];
|
77
|
+
blake2s_state R[1];
|
78
|
+
uint8_t buf[8 * BLAKE2S_BLOCKBYTES];
|
79
|
+
size_t buflen;
|
80
|
+
size_t outlen;
|
81
|
+
} blake2sp_state;
|
82
|
+
|
83
|
+
typedef struct blake2bp_state__
|
84
|
+
{
|
85
|
+
blake2b_state S[4][1];
|
86
|
+
blake2b_state R[1];
|
87
|
+
uint8_t buf[4 * BLAKE2B_BLOCKBYTES];
|
88
|
+
size_t buflen;
|
89
|
+
size_t outlen;
|
90
|
+
} blake2bp_state;
|
91
|
+
|
92
|
+
BLAKE2_PACKED(struct blake2s_param__
|
93
|
+
{
|
94
|
+
uint8_t digest_length; /* 1 */
|
95
|
+
uint8_t key_length; /* 2 */
|
96
|
+
uint8_t fanout; /* 3 */
|
97
|
+
uint8_t depth; /* 4 */
|
98
|
+
uint32_t leaf_length; /* 8 */
|
99
|
+
uint32_t node_offset; /* 12 */
|
100
|
+
uint16_t xof_length; /* 14 */
|
101
|
+
uint8_t node_depth; /* 15 */
|
102
|
+
uint8_t inner_length; /* 16 */
|
103
|
+
/* uint8_t reserved[0]; */
|
104
|
+
uint8_t salt[BLAKE2S_SALTBYTES]; /* 24 */
|
105
|
+
uint8_t personal[BLAKE2S_PERSONALBYTES]; /* 32 */
|
106
|
+
});
|
107
|
+
|
108
|
+
typedef struct blake2s_param__ blake2s_param;
|
109
|
+
|
110
|
+
BLAKE2_PACKED(struct blake2b_param__
|
111
|
+
{
|
112
|
+
uint8_t digest_length; /* 1 */
|
113
|
+
uint8_t key_length; /* 2 */
|
114
|
+
uint8_t fanout; /* 3 */
|
115
|
+
uint8_t depth; /* 4 */
|
116
|
+
uint32_t leaf_length; /* 8 */
|
117
|
+
uint32_t node_offset; /* 12 */
|
118
|
+
uint32_t xof_length; /* 16 */
|
119
|
+
uint8_t node_depth; /* 17 */
|
120
|
+
uint8_t inner_length; /* 18 */
|
121
|
+
uint8_t reserved[14]; /* 32 */
|
122
|
+
uint8_t salt[BLAKE2B_SALTBYTES]; /* 48 */
|
123
|
+
uint8_t personal[BLAKE2B_PERSONALBYTES]; /* 64 */
|
124
|
+
});
|
125
|
+
|
126
|
+
typedef struct blake2b_param__ blake2b_param;
|
127
|
+
|
128
|
+
typedef struct blake2xs_state__
|
129
|
+
{
|
130
|
+
blake2s_state S[1];
|
131
|
+
blake2s_param P[1];
|
132
|
+
} blake2xs_state;
|
133
|
+
|
134
|
+
typedef struct blake2xb_state__
|
135
|
+
{
|
136
|
+
blake2b_state S[1];
|
137
|
+
blake2b_param P[1];
|
138
|
+
} blake2xb_state;
|
139
|
+
|
140
|
+
/* Padded structs result in a compile-time error */
|
141
|
+
enum {
|
142
|
+
BLAKE2_DUMMY_1 = 1/(sizeof(blake2s_param) == BLAKE2S_OUTBYTES),
|
143
|
+
BLAKE2_DUMMY_2 = 1/(sizeof(blake2b_param) == BLAKE2B_OUTBYTES)
|
144
|
+
};
|
145
|
+
|
146
|
+
/* Streaming API */
|
147
|
+
int blake2s_init( blake2s_state *S, size_t outlen );
|
148
|
+
int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen );
|
149
|
+
int blake2s_init_param( blake2s_state *S, const blake2s_param *P );
|
150
|
+
int blake2s_update( blake2s_state *S, const void *in, size_t inlen );
|
151
|
+
int blake2s_final( blake2s_state *S, void *out, size_t outlen );
|
152
|
+
|
153
|
+
int blake2b_init( blake2b_state *S, size_t outlen );
|
154
|
+
int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, size_t keylen );
|
155
|
+
int blake2b_init_param( blake2b_state *S, const blake2b_param *P );
|
156
|
+
int blake2b_update( blake2b_state *S, const void *in, size_t inlen );
|
157
|
+
int blake2b_final( blake2b_state *S, void *out, size_t outlen );
|
158
|
+
|
159
|
+
int blake2sp_init( blake2sp_state *S, size_t outlen );
|
160
|
+
int blake2sp_init_key( blake2sp_state *S, size_t outlen, const void *key, size_t keylen );
|
161
|
+
int blake2sp_update( blake2sp_state *S, const void *in, size_t inlen );
|
162
|
+
int blake2sp_final( blake2sp_state *S, void *out, size_t outlen );
|
163
|
+
|
164
|
+
int blake2bp_init( blake2bp_state *S, size_t outlen );
|
165
|
+
int blake2bp_init_key( blake2bp_state *S, size_t outlen, const void *key, size_t keylen );
|
166
|
+
int blake2bp_update( blake2bp_state *S, const void *in, size_t inlen );
|
167
|
+
int blake2bp_final( blake2bp_state *S, void *out, size_t outlen );
|
168
|
+
|
169
|
+
/* Variable output length API */
|
170
|
+
int blake2xs_init( blake2xs_state *S, const size_t outlen );
|
171
|
+
int blake2xs_init_key( blake2xs_state *S, const size_t outlen, const void *key, size_t keylen );
|
172
|
+
int blake2xs_update( blake2xs_state *S, const void *in, size_t inlen );
|
173
|
+
int blake2xs_final(blake2xs_state *S, void *out, size_t outlen);
|
174
|
+
|
175
|
+
int blake2xb_init( blake2xb_state *S, const size_t outlen );
|
176
|
+
int blake2xb_init_key( blake2xb_state *S, const size_t outlen, const void *key, size_t keylen );
|
177
|
+
int blake2xb_update( blake2xb_state *S, const void *in, size_t inlen );
|
178
|
+
int blake2xb_final(blake2xb_state *S, void *out, size_t outlen);
|
179
|
+
|
180
|
+
/* Simple API */
|
181
|
+
int blake2s( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
182
|
+
int blake2b( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
183
|
+
|
184
|
+
int blake2sp( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
185
|
+
int blake2bp( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
186
|
+
|
187
|
+
int blake2xs( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
188
|
+
int blake2xb( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
189
|
+
|
190
|
+
/* This is simply an alias for blake2b */
|
191
|
+
int blake2( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
192
|
+
|
193
|
+
#if defined(__cplusplus)
|
194
|
+
}
|
195
|
+
#endif
|
196
|
+
|
197
|
+
#endif
|
@@ -0,0 +1,161 @@
|
|
1
|
+
/*
|
2
|
+
BLAKE2 reference source code package - reference C implementations
|
3
|
+
|
4
|
+
Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You may use this under the
|
5
|
+
terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at
|
6
|
+
your option. The terms of these licenses can be found at:
|
7
|
+
|
8
|
+
- CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
|
9
|
+
- OpenSSL license : https://www.openssl.org/source/license.html
|
10
|
+
- Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
|
12
|
+
More information about the BLAKE2 hash function can be found at
|
13
|
+
https://blake2.net.
|
14
|
+
*/
|
15
|
+
|
16
|
+
#ifndef ARCHIVE_BLAKE2_IMPL_H
|
17
|
+
#define ARCHIVE_BLAKE2_IMPL_H
|
18
|
+
|
19
|
+
#include <stdint.h>
|
20
|
+
#include <string.h>
|
21
|
+
|
22
|
+
#if !defined(__cplusplus) && (!defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L)
|
23
|
+
#if defined(_MSC_VER)
|
24
|
+
#define BLAKE2_INLINE __inline
|
25
|
+
#elif defined(__GNUC__)
|
26
|
+
#define BLAKE2_INLINE __inline__
|
27
|
+
#else
|
28
|
+
#define BLAKE2_INLINE
|
29
|
+
#endif
|
30
|
+
#else
|
31
|
+
#define BLAKE2_INLINE inline
|
32
|
+
#endif
|
33
|
+
|
34
|
+
static BLAKE2_INLINE uint32_t load32( const void *src )
|
35
|
+
{
|
36
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
37
|
+
uint32_t w;
|
38
|
+
memcpy(&w, src, sizeof w);
|
39
|
+
return w;
|
40
|
+
#else
|
41
|
+
const uint8_t *p = ( const uint8_t * )src;
|
42
|
+
return (( uint32_t )( p[0] ) << 0) |
|
43
|
+
(( uint32_t )( p[1] ) << 8) |
|
44
|
+
(( uint32_t )( p[2] ) << 16) |
|
45
|
+
(( uint32_t )( p[3] ) << 24) ;
|
46
|
+
#endif
|
47
|
+
}
|
48
|
+
|
49
|
+
static BLAKE2_INLINE uint64_t load64( const void *src )
|
50
|
+
{
|
51
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
52
|
+
uint64_t w;
|
53
|
+
memcpy(&w, src, sizeof w);
|
54
|
+
return w;
|
55
|
+
#else
|
56
|
+
const uint8_t *p = ( const uint8_t * )src;
|
57
|
+
return (( uint64_t )( p[0] ) << 0) |
|
58
|
+
(( uint64_t )( p[1] ) << 8) |
|
59
|
+
(( uint64_t )( p[2] ) << 16) |
|
60
|
+
(( uint64_t )( p[3] ) << 24) |
|
61
|
+
(( uint64_t )( p[4] ) << 32) |
|
62
|
+
(( uint64_t )( p[5] ) << 40) |
|
63
|
+
(( uint64_t )( p[6] ) << 48) |
|
64
|
+
(( uint64_t )( p[7] ) << 56) ;
|
65
|
+
#endif
|
66
|
+
}
|
67
|
+
|
68
|
+
static BLAKE2_INLINE uint16_t load16( const void *src )
|
69
|
+
{
|
70
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
71
|
+
uint16_t w;
|
72
|
+
memcpy(&w, src, sizeof w);
|
73
|
+
return w;
|
74
|
+
#else
|
75
|
+
const uint8_t *p = ( const uint8_t * )src;
|
76
|
+
return ( uint16_t )((( uint32_t )( p[0] ) << 0) |
|
77
|
+
(( uint32_t )( p[1] ) << 8));
|
78
|
+
#endif
|
79
|
+
}
|
80
|
+
|
81
|
+
static BLAKE2_INLINE void store16( void *dst, uint16_t w )
|
82
|
+
{
|
83
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
84
|
+
memcpy(dst, &w, sizeof w);
|
85
|
+
#else
|
86
|
+
uint8_t *p = ( uint8_t * )dst;
|
87
|
+
*p++ = ( uint8_t )w; w >>= 8;
|
88
|
+
*p++ = ( uint8_t )w;
|
89
|
+
#endif
|
90
|
+
}
|
91
|
+
|
92
|
+
static BLAKE2_INLINE void store32( void *dst, uint32_t w )
|
93
|
+
{
|
94
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
95
|
+
memcpy(dst, &w, sizeof w);
|
96
|
+
#else
|
97
|
+
uint8_t *p = ( uint8_t * )dst;
|
98
|
+
p[0] = (uint8_t)(w >> 0);
|
99
|
+
p[1] = (uint8_t)(w >> 8);
|
100
|
+
p[2] = (uint8_t)(w >> 16);
|
101
|
+
p[3] = (uint8_t)(w >> 24);
|
102
|
+
#endif
|
103
|
+
}
|
104
|
+
|
105
|
+
static BLAKE2_INLINE void store64( void *dst, uint64_t w )
|
106
|
+
{
|
107
|
+
#if defined(NATIVE_LITTLE_ENDIAN)
|
108
|
+
memcpy(dst, &w, sizeof w);
|
109
|
+
#else
|
110
|
+
uint8_t *p = ( uint8_t * )dst;
|
111
|
+
p[0] = (uint8_t)(w >> 0);
|
112
|
+
p[1] = (uint8_t)(w >> 8);
|
113
|
+
p[2] = (uint8_t)(w >> 16);
|
114
|
+
p[3] = (uint8_t)(w >> 24);
|
115
|
+
p[4] = (uint8_t)(w >> 32);
|
116
|
+
p[5] = (uint8_t)(w >> 40);
|
117
|
+
p[6] = (uint8_t)(w >> 48);
|
118
|
+
p[7] = (uint8_t)(w >> 56);
|
119
|
+
#endif
|
120
|
+
}
|
121
|
+
|
122
|
+
static BLAKE2_INLINE uint64_t load48( const void *src )
|
123
|
+
{
|
124
|
+
const uint8_t *p = ( const uint8_t * )src;
|
125
|
+
return (( uint64_t )( p[0] ) << 0) |
|
126
|
+
(( uint64_t )( p[1] ) << 8) |
|
127
|
+
(( uint64_t )( p[2] ) << 16) |
|
128
|
+
(( uint64_t )( p[3] ) << 24) |
|
129
|
+
(( uint64_t )( p[4] ) << 32) |
|
130
|
+
(( uint64_t )( p[5] ) << 40) ;
|
131
|
+
}
|
132
|
+
|
133
|
+
static BLAKE2_INLINE void store48( void *dst, uint64_t w )
|
134
|
+
{
|
135
|
+
uint8_t *p = ( uint8_t * )dst;
|
136
|
+
p[0] = (uint8_t)(w >> 0);
|
137
|
+
p[1] = (uint8_t)(w >> 8);
|
138
|
+
p[2] = (uint8_t)(w >> 16);
|
139
|
+
p[3] = (uint8_t)(w >> 24);
|
140
|
+
p[4] = (uint8_t)(w >> 32);
|
141
|
+
p[5] = (uint8_t)(w >> 40);
|
142
|
+
}
|
143
|
+
|
144
|
+
static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c )
|
145
|
+
{
|
146
|
+
return ( w >> c ) | ( w << ( 32 - c ) );
|
147
|
+
}
|
148
|
+
|
149
|
+
static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c )
|
150
|
+
{
|
151
|
+
return ( w >> c ) | ( w << ( 64 - c ) );
|
152
|
+
}
|
153
|
+
|
154
|
+
/* prevents compiler optimizing out memset() */
|
155
|
+
static BLAKE2_INLINE void secure_zero_memory(void *v, size_t n)
|
156
|
+
{
|
157
|
+
static void *(__LA_LIBC_CC *const volatile memset_v)(void *, int, size_t) = &memset;
|
158
|
+
memset_v(v, 0, n);
|
159
|
+
}
|
160
|
+
|
161
|
+
#endif
|