├── .autom4te.cfg ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── BUILDING ├── COPYING ├── Makefile.am ├── NEWS.md ├── README.md ├── STYLE ├── configure.ac ├── keygen ├── keygen.c ├── keygen.h ├── keygen_actual.c ├── keygen_network.c ├── tarsnap-keygen.1-man └── tarsnap-keygen.1-mdoc ├── keymgmt ├── keymgmt.c ├── tarsnap-keymgmt.1-man └── tarsnap-keymgmt.1-mdoc ├── keyregen ├── keyregen.c ├── tarsnap-keyregen.1-man └── tarsnap-keyregen.1-mdoc ├── lib-platform ├── crypto │ ├── crypto_scrypt.c │ └── crypto_scrypt.h ├── network │ ├── tsnetwork_cork.c │ └── tsnetwork_cork.h ├── platform.h └── util │ ├── fileutil.c │ ├── fileutil.h │ ├── memlimit.c │ ├── memlimit.h │ ├── ts_getfstype.c │ └── ts_getfstype.h ├── lib ├── crypto │ ├── crypto.h │ ├── crypto_compat.c │ ├── crypto_compat.h │ ├── crypto_file.c │ ├── crypto_hash.c │ ├── crypto_internal.h │ ├── crypto_keys.c │ ├── crypto_keys_init.c │ ├── crypto_keys_server.c │ ├── crypto_keys_subr.c │ ├── crypto_passwd_to_dh.c │ ├── crypto_rsa.c │ ├── crypto_scrypt_smix.c │ ├── crypto_scrypt_smix.h │ ├── crypto_scrypt_smix_sse2.c │ ├── crypto_scrypt_smix_sse2.h │ └── crypto_session.c ├── datastruct │ ├── patricia.c │ ├── patricia.h │ ├── rwhashtab.c │ └── rwhashtab.h ├── keyfile │ ├── keyfile.c │ └── keyfile.h ├── netpacket │ ├── netpacket.h │ ├── netpacket_delete.c │ ├── netpacket_directory.c │ ├── netpacket_hmac.c │ ├── netpacket_internal.h │ ├── netpacket_op.c │ ├── netpacket_read.c │ ├── netpacket_register.c │ ├── netpacket_transaction.c │ ├── netpacket_write.c │ └── packets.txt ├── netproto │ ├── netproto.c │ ├── netproto.h │ ├── netproto_connect.c │ ├── netproto_internal.h │ ├── netproto_keyexchange.c │ └── netproto_packet.c ├── network │ ├── tsnetwork.h │ ├── tsnetwork_buf.c │ ├── tsnetwork_bwlimit.c │ ├── tsnetwork_connect.c │ ├── tsnetwork_internal.h │ ├── tsnetwork_register.c │ ├── tsnetwork_select.c │ ├── tsnetwork_sleep.c │ └── tsnetwork_writeq.c ├── scryptenc │ ├── scryptenc.c │ ├── scryptenc.h │ ├── scryptenc_cpuperf.c │ └── scryptenc_cpuperf.h └── util │ ├── dirutil.c │ ├── dirutil.h │ ├── hexlink.c │ ├── hexlink.h │ ├── passphrase_entry.c │ ├── passphrase_entry.h │ ├── print_separator.c │ ├── print_separator.h │ ├── sigquit.c │ ├── sigquit.h │ ├── tvmath.c │ └── tvmath.h ├── libarchive ├── archive.h ├── archive_check_magic.c ├── archive_endian.h ├── archive_entry.c ├── archive_entry.h ├── archive_entry_copy_stat.c ├── archive_entry_link_resolver.c ├── archive_entry_private.h ├── archive_entry_stat.c ├── archive_entry_strmode.c ├── archive_platform.h ├── archive_private.h ├── archive_read.c ├── archive_read_data_into_fd.c ├── archive_read_disk.c ├── archive_read_disk_entry_from_file.c ├── archive_read_disk_private.h ├── archive_read_disk_set_standard_lookup.c ├── archive_read_extract.c ├── archive_read_open_fd.c ├── archive_read_open_file.c ├── archive_read_open_filename.c ├── archive_read_open_memory.c ├── archive_read_private.h ├── archive_read_support_compression_all.c ├── archive_read_support_compression_bzip2.c ├── archive_read_support_compression_compress.c ├── archive_read_support_compression_gzip.c ├── archive_read_support_compression_none.c ├── archive_read_support_compression_program.c ├── archive_read_support_compression_xz.c ├── archive_read_support_format_all.c ├── archive_read_support_format_ar.c ├── archive_read_support_format_cpio.c ├── archive_read_support_format_empty.c ├── archive_read_support_format_iso9660.c ├── archive_read_support_format_mtree.c ├── archive_read_support_format_tar.c ├── archive_read_support_format_zip.c ├── archive_string.c ├── archive_string.h ├── archive_string_sprintf.c ├── archive_util.c ├── archive_virtual.c ├── archive_windows.c ├── archive_windows.h ├── archive_write.c ├── archive_write_disk.c ├── archive_write_disk_private.h ├── archive_write_disk_set_standard_lookup.c ├── archive_write_open_fd.c ├── archive_write_open_file.c ├── archive_write_open_filename.c ├── archive_write_open_memory.c ├── archive_write_private.h ├── archive_write_set_compression_none.c ├── archive_write_set_format_pax.c ├── archive_write_set_format_ustar.c ├── config_freebsd.h ├── config_windows.h ├── filter_fork.c ├── filter_fork.h └── filter_fork_windows.c ├── libcperciva ├── COPYRIGHT ├── POSIX │ ├── README │ ├── posix-abstract-declarator.c │ ├── posix-cflags.sh │ ├── posix-clock_gettime.c │ ├── posix-clock_realtime.c │ ├── posix-inet-addrstrlen.c │ ├── posix-inet6-addrstrlen.c │ ├── posix-l.sh │ ├── posix-msg_nosignal.c │ ├── posix-restrict.c │ ├── posix-stat-st_mtim.c │ └── posix-trivial.c ├── alg │ ├── sha256.c │ ├── sha256.h │ ├── sha256_arm.c │ ├── sha256_arm.h │ ├── sha256_shani.c │ ├── sha256_shani.h │ ├── sha256_sse2.c │ └── sha256_sse2.h ├── apisupport │ └── Build │ │ ├── apisupport-LIBCRYPTO-LOW_LEVEL_AES.c │ │ ├── apisupport-LIBCRYPTO-LOW_LEVEL_RSA.c │ │ └── apisupport.sh ├── cpusupport │ ├── Build │ │ ├── cpusupport-ARM-AES.c │ │ ├── cpusupport-ARM-SHA256.c │ │ ├── cpusupport-HWCAP-ELF_AUX_INFO.c │ │ ├── cpusupport-HWCAP-GETAUXVAL.c │ │ ├── cpusupport-X86-AESNI.c │ │ ├── cpusupport-X86-CPUID.c │ │ ├── cpusupport-X86-CPUID_COUNT.c │ │ ├── cpusupport-X86-RDRAND.c │ │ ├── cpusupport-X86-SHANI.c │ │ ├── cpusupport-X86-SSE2.c │ │ ├── cpusupport-X86-SSSE3.c │ │ └── cpusupport.sh │ ├── cpusupport.h │ ├── cpusupport_arm_aes.c │ ├── cpusupport_arm_sha256.c │ ├── cpusupport_x86_aesni.c │ ├── cpusupport_x86_rdrand.c │ ├── cpusupport_x86_shani.c │ ├── cpusupport_x86_sse2.c │ └── cpusupport_x86_ssse3.c ├── crypto │ ├── crypto_aes.c │ ├── crypto_aes.h │ ├── crypto_aes_aesni.c │ ├── crypto_aes_aesni.h │ ├── crypto_aes_aesni_m128i.h │ ├── crypto_aes_arm.c │ ├── crypto_aes_arm.h │ ├── crypto_aes_arm_u8.h │ ├── crypto_aesctr.c │ ├── crypto_aesctr.h │ ├── crypto_aesctr_aesni.c │ ├── crypto_aesctr_aesni.h │ ├── crypto_aesctr_arm.c │ ├── crypto_aesctr_arm.h │ ├── crypto_aesctr_shared.c │ ├── crypto_dh.c │ ├── crypto_dh.h │ ├── crypto_dh_group14.c │ ├── crypto_dh_group14.h │ ├── crypto_entropy.c │ ├── crypto_entropy.h │ ├── crypto_entropy_rdrand.c │ ├── crypto_entropy_rdrand.h │ ├── crypto_verify_bytes.c │ └── crypto_verify_bytes.h ├── datastruct │ ├── elasticarray.c │ ├── elasticarray.h │ ├── mpool.h │ ├── ptrheap.c │ ├── ptrheap.h │ ├── timerqueue.c │ └── timerqueue.h ├── events │ ├── events.c │ ├── events.h │ ├── events_immediate.c │ ├── events_internal.h │ ├── events_network.c │ ├── events_network_selectstats.c │ └── events_timer.c ├── external │ └── queue │ │ └── queue.h ├── network │ ├── network.h │ ├── network_accept.c │ ├── network_connect.c │ ├── network_read.c │ └── network_write.c └── util │ ├── align_ptr.h │ ├── asprintf.c │ ├── asprintf.h │ ├── b64encode.c │ ├── b64encode.h │ ├── ctassert.h │ ├── entropy.c │ ├── entropy.h │ ├── getopt.c │ ├── getopt.h │ ├── hexify.c │ ├── hexify.h │ ├── humansize.c │ ├── humansize.h │ ├── imalloc.h │ ├── insecure_memzero.c │ ├── insecure_memzero.h │ ├── monoclock.c │ ├── monoclock.h │ ├── parsenum.h │ ├── readpass.c │ ├── readpass.h │ ├── readpass_file.c │ ├── sock.c │ ├── sock.h │ ├── sock_internal.h │ ├── sock_util.c │ ├── sock_util.h │ ├── sysendian.h │ ├── ttyfd.c │ ├── ttyfd.h │ ├── warnp.c │ └── warnp.h ├── m4 ├── check_broken_tcp_nopush.m4 ├── check_darwin_paths.m4 ├── check_disable_compiler_warnings.m4 ├── check_freebsd_portrange_bug.m4 ├── check_libcperciva_posix.m4 ├── check_linux_ext2fs.m4 ├── check_mdoc_or_man.m4 ├── check_memlimit_support.m4 ├── check_posix_sh.m4 ├── check_solaris_c99.m4 └── check_solaris_paths.m4 ├── misc ├── bash_completion.d │ ├── tarsnap │ ├── tarsnap-keygen │ ├── tarsnap-keymgmt │ ├── tarsnap-keyregen │ └── tarsnap-recrypt ├── describe-options.txt └── zsh_completion │ └── _tarsnap ├── pkg ├── COPYRIGHT ├── DEBIAN.md ├── README.md ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── rules │ ├── source │ │ ├── format │ │ └── options │ └── watch └── fedora │ └── tarsnap.spec ├── recrypt ├── recrypt.c ├── tarsnap-recrypt.1-man └── tarsnap-recrypt.1-mdoc ├── release-tools ├── mdoc2man.awk ├── mdoc2man.sh ├── mkdebsource.sh └── mktarball.sh ├── tar-version ├── tar ├── bsdtar.c ├── bsdtar.h ├── bsdtar_cygwin.c ├── bsdtar_cygwin.h ├── bsdtar_platform.h ├── bsdtar_windows.c ├── bsdtar_windows.h ├── ccache │ ├── ccache.h │ ├── ccache_entry.c │ ├── ccache_internal.h │ ├── ccache_read.c │ └── ccache_write.c ├── chunks │ ├── chunks.h │ ├── chunks_delete.c │ ├── chunks_directory.c │ ├── chunks_internal.h │ ├── chunks_read.c │ ├── chunks_stats.c │ ├── chunks_stats_internal.c │ ├── chunks_transaction.c │ └── chunks_write.c ├── cmdline.c ├── config_freebsd.h ├── getdate.c ├── glue │ ├── archive_multitape.c │ ├── archive_multitape.h │ └── tape.c ├── matching.c ├── multitape │ ├── chunkify.c │ ├── chunkify.h │ ├── multitape.h │ ├── multitape_chunkiter.c │ ├── multitape_delete.c │ ├── multitape_fsck.c │ ├── multitape_internal.h │ ├── multitape_metadata.c │ ├── multitape_metaindex.c │ ├── multitape_nuke.c │ ├── multitape_read.c │ ├── multitape_recover.c │ ├── multitape_stats.c │ ├── multitape_transaction.c │ └── multitape_write.c ├── read.c ├── siginfo.c ├── storage │ ├── storage.h │ ├── storage_delete.c │ ├── storage_directory.c │ ├── storage_internal.h │ ├── storage_read.c │ ├── storage_read_cache.c │ ├── storage_read_cache.h │ ├── storage_transaction.c │ └── storage_write.c ├── subst.c ├── tarsnap.1-man.in ├── tarsnap.1-mdoc.in ├── tarsnap.conf.5-man.in ├── tarsnap.conf.5-mdoc.in ├── tarsnap.conf.sample ├── tarsnap_opt.h ├── tree.c ├── tree.h ├── util.c └── write.c ├── tests ├── 01-trivial.sh ├── 02-c-dry-run-no-keyfile.sh ├── 03-c-dry-run-fake-keyfile.sh ├── 04-c-d-real-keyfile.sh ├── 05-passphrase.sh ├── 06-progress-output-pb.good ├── 06-progress-output-v.good ├── 06-progress-output-vpb-1k.good ├── 06-progress-output-vpb-20k.good ├── 06-progress-output.sh ├── 07-selecting-files-baseline.good ├── 07-selecting-files-exclude.good ├── 07-selecting-files-include-exclude.good ├── 07-selecting-files-include.good ├── 07-selecting-files-nT-full.good ├── 07-selecting-files-nT-partial.good ├── 07-selecting-files.sh ├── fake-passphrased.keys ├── fake.keys ├── sample-backup │ ├── a │ ├── dir1 │ │ ├── b │ │ └── c │ └── dir2 │ │ └── d ├── shared_test_functions.sh ├── shared_valgrind_functions.sh ├── test_tarsnap.sh └── valgrind │ └── potential-memleaks.c ├── tools ├── check_c_function_newline.py ├── check_includes_alphabetical.py ├── check_man.py ├── man_to_argparse.py ├── man_to_completion.py ├── man_to_zsh.py └── style_utils.py └── tsserver /.autom4te.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/.autom4te.cfg -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/BUILDING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/README.md -------------------------------------------------------------------------------- /STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/STYLE -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/configure.ac -------------------------------------------------------------------------------- /keygen/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/keygen.c -------------------------------------------------------------------------------- /keygen/keygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/keygen.h -------------------------------------------------------------------------------- /keygen/keygen_actual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/keygen_actual.c -------------------------------------------------------------------------------- /keygen/keygen_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/keygen_network.c -------------------------------------------------------------------------------- /keygen/tarsnap-keygen.1-man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/tarsnap-keygen.1-man -------------------------------------------------------------------------------- /keygen/tarsnap-keygen.1-mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keygen/tarsnap-keygen.1-mdoc -------------------------------------------------------------------------------- /keymgmt/keymgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keymgmt/keymgmt.c -------------------------------------------------------------------------------- /keymgmt/tarsnap-keymgmt.1-man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keymgmt/tarsnap-keymgmt.1-man -------------------------------------------------------------------------------- /keymgmt/tarsnap-keymgmt.1-mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keymgmt/tarsnap-keymgmt.1-mdoc -------------------------------------------------------------------------------- /keyregen/keyregen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keyregen/keyregen.c -------------------------------------------------------------------------------- /keyregen/tarsnap-keyregen.1-man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keyregen/tarsnap-keyregen.1-man -------------------------------------------------------------------------------- /keyregen/tarsnap-keyregen.1-mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/keyregen/tarsnap-keyregen.1-mdoc -------------------------------------------------------------------------------- /lib-platform/crypto/crypto_scrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/crypto/crypto_scrypt.c -------------------------------------------------------------------------------- /lib-platform/crypto/crypto_scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/crypto/crypto_scrypt.h -------------------------------------------------------------------------------- /lib-platform/network/tsnetwork_cork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/network/tsnetwork_cork.c -------------------------------------------------------------------------------- /lib-platform/network/tsnetwork_cork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/network/tsnetwork_cork.h -------------------------------------------------------------------------------- /lib-platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/platform.h -------------------------------------------------------------------------------- /lib-platform/util/fileutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/fileutil.c -------------------------------------------------------------------------------- /lib-platform/util/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/fileutil.h -------------------------------------------------------------------------------- /lib-platform/util/memlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/memlimit.c -------------------------------------------------------------------------------- /lib-platform/util/memlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/memlimit.h -------------------------------------------------------------------------------- /lib-platform/util/ts_getfstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/ts_getfstype.c -------------------------------------------------------------------------------- /lib-platform/util/ts_getfstype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib-platform/util/ts_getfstype.h -------------------------------------------------------------------------------- /lib/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto.h -------------------------------------------------------------------------------- /lib/crypto/crypto_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_compat.c -------------------------------------------------------------------------------- /lib/crypto/crypto_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_compat.h -------------------------------------------------------------------------------- /lib/crypto/crypto_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_file.c -------------------------------------------------------------------------------- /lib/crypto/crypto_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_hash.c -------------------------------------------------------------------------------- /lib/crypto/crypto_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_internal.h -------------------------------------------------------------------------------- /lib/crypto/crypto_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_keys.c -------------------------------------------------------------------------------- /lib/crypto/crypto_keys_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_keys_init.c -------------------------------------------------------------------------------- /lib/crypto/crypto_keys_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_keys_server.c -------------------------------------------------------------------------------- /lib/crypto/crypto_keys_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_keys_subr.c -------------------------------------------------------------------------------- /lib/crypto/crypto_passwd_to_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_passwd_to_dh.c -------------------------------------------------------------------------------- /lib/crypto/crypto_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_rsa.c -------------------------------------------------------------------------------- /lib/crypto/crypto_scrypt_smix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_scrypt_smix.c -------------------------------------------------------------------------------- /lib/crypto/crypto_scrypt_smix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_scrypt_smix.h -------------------------------------------------------------------------------- /lib/crypto/crypto_scrypt_smix_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_scrypt_smix_sse2.c -------------------------------------------------------------------------------- /lib/crypto/crypto_scrypt_smix_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_scrypt_smix_sse2.h -------------------------------------------------------------------------------- /lib/crypto/crypto_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/crypto/crypto_session.c -------------------------------------------------------------------------------- /lib/datastruct/patricia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/datastruct/patricia.c -------------------------------------------------------------------------------- /lib/datastruct/patricia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/datastruct/patricia.h -------------------------------------------------------------------------------- /lib/datastruct/rwhashtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/datastruct/rwhashtab.c -------------------------------------------------------------------------------- /lib/datastruct/rwhashtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/datastruct/rwhashtab.h -------------------------------------------------------------------------------- /lib/keyfile/keyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/keyfile/keyfile.c -------------------------------------------------------------------------------- /lib/keyfile/keyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/keyfile/keyfile.h -------------------------------------------------------------------------------- /lib/netpacket/netpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket.h -------------------------------------------------------------------------------- /lib/netpacket/netpacket_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_delete.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_directory.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_hmac.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_internal.h -------------------------------------------------------------------------------- /lib/netpacket/netpacket_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_op.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_read.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_register.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_transaction.c -------------------------------------------------------------------------------- /lib/netpacket/netpacket_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/netpacket_write.c -------------------------------------------------------------------------------- /lib/netpacket/packets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netpacket/packets.txt -------------------------------------------------------------------------------- /lib/netproto/netproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto.c -------------------------------------------------------------------------------- /lib/netproto/netproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto.h -------------------------------------------------------------------------------- /lib/netproto/netproto_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto_connect.c -------------------------------------------------------------------------------- /lib/netproto/netproto_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto_internal.h -------------------------------------------------------------------------------- /lib/netproto/netproto_keyexchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto_keyexchange.c -------------------------------------------------------------------------------- /lib/netproto/netproto_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/netproto/netproto_packet.c -------------------------------------------------------------------------------- /lib/network/tsnetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork.h -------------------------------------------------------------------------------- /lib/network/tsnetwork_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_buf.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_bwlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_bwlimit.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_connect.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_internal.h -------------------------------------------------------------------------------- /lib/network/tsnetwork_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_register.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_select.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_sleep.c -------------------------------------------------------------------------------- /lib/network/tsnetwork_writeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/network/tsnetwork_writeq.c -------------------------------------------------------------------------------- /lib/scryptenc/scryptenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/scryptenc/scryptenc.c -------------------------------------------------------------------------------- /lib/scryptenc/scryptenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/scryptenc/scryptenc.h -------------------------------------------------------------------------------- /lib/scryptenc/scryptenc_cpuperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/scryptenc/scryptenc_cpuperf.c -------------------------------------------------------------------------------- /lib/scryptenc/scryptenc_cpuperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/scryptenc/scryptenc_cpuperf.h -------------------------------------------------------------------------------- /lib/util/dirutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/dirutil.c -------------------------------------------------------------------------------- /lib/util/dirutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/dirutil.h -------------------------------------------------------------------------------- /lib/util/hexlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/hexlink.c -------------------------------------------------------------------------------- /lib/util/hexlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/hexlink.h -------------------------------------------------------------------------------- /lib/util/passphrase_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/passphrase_entry.c -------------------------------------------------------------------------------- /lib/util/passphrase_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/passphrase_entry.h -------------------------------------------------------------------------------- /lib/util/print_separator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/print_separator.c -------------------------------------------------------------------------------- /lib/util/print_separator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/print_separator.h -------------------------------------------------------------------------------- /lib/util/sigquit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/sigquit.c -------------------------------------------------------------------------------- /lib/util/sigquit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/sigquit.h -------------------------------------------------------------------------------- /lib/util/tvmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/tvmath.c -------------------------------------------------------------------------------- /lib/util/tvmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/lib/util/tvmath.h -------------------------------------------------------------------------------- /libarchive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive.h -------------------------------------------------------------------------------- /libarchive/archive_check_magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_check_magic.c -------------------------------------------------------------------------------- /libarchive/archive_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_endian.h -------------------------------------------------------------------------------- /libarchive/archive_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry.c -------------------------------------------------------------------------------- /libarchive/archive_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry.h -------------------------------------------------------------------------------- /libarchive/archive_entry_copy_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry_copy_stat.c -------------------------------------------------------------------------------- /libarchive/archive_entry_link_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry_link_resolver.c -------------------------------------------------------------------------------- /libarchive/archive_entry_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry_private.h -------------------------------------------------------------------------------- /libarchive/archive_entry_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry_stat.c -------------------------------------------------------------------------------- /libarchive/archive_entry_strmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_entry_strmode.c -------------------------------------------------------------------------------- /libarchive/archive_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_platform.h -------------------------------------------------------------------------------- /libarchive/archive_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_private.h -------------------------------------------------------------------------------- /libarchive/archive_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read.c -------------------------------------------------------------------------------- /libarchive/archive_read_data_into_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_data_into_fd.c -------------------------------------------------------------------------------- /libarchive/archive_read_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_disk.c -------------------------------------------------------------------------------- /libarchive/archive_read_disk_entry_from_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_disk_entry_from_file.c -------------------------------------------------------------------------------- /libarchive/archive_read_disk_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_disk_private.h -------------------------------------------------------------------------------- /libarchive/archive_read_disk_set_standard_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_disk_set_standard_lookup.c -------------------------------------------------------------------------------- /libarchive/archive_read_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_extract.c -------------------------------------------------------------------------------- /libarchive/archive_read_open_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_open_fd.c -------------------------------------------------------------------------------- /libarchive/archive_read_open_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_open_file.c -------------------------------------------------------------------------------- /libarchive/archive_read_open_filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_open_filename.c -------------------------------------------------------------------------------- /libarchive/archive_read_open_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_open_memory.c -------------------------------------------------------------------------------- /libarchive/archive_read_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_private.h -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_all.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_bzip2.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_compress.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_gzip.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_none.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_program.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_compression_xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_compression_xz.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_all.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_ar.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_cpio.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_empty.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_iso9660.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_mtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_mtree.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_tar.c -------------------------------------------------------------------------------- /libarchive/archive_read_support_format_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_read_support_format_zip.c -------------------------------------------------------------------------------- /libarchive/archive_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_string.c -------------------------------------------------------------------------------- /libarchive/archive_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_string.h -------------------------------------------------------------------------------- /libarchive/archive_string_sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_string_sprintf.c -------------------------------------------------------------------------------- /libarchive/archive_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_util.c -------------------------------------------------------------------------------- /libarchive/archive_virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_virtual.c -------------------------------------------------------------------------------- /libarchive/archive_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_windows.c -------------------------------------------------------------------------------- /libarchive/archive_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_windows.h -------------------------------------------------------------------------------- /libarchive/archive_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write.c -------------------------------------------------------------------------------- /libarchive/archive_write_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_disk.c -------------------------------------------------------------------------------- /libarchive/archive_write_disk_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_disk_private.h -------------------------------------------------------------------------------- /libarchive/archive_write_disk_set_standard_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_disk_set_standard_lookup.c -------------------------------------------------------------------------------- /libarchive/archive_write_open_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_open_fd.c -------------------------------------------------------------------------------- /libarchive/archive_write_open_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_open_file.c -------------------------------------------------------------------------------- /libarchive/archive_write_open_filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_open_filename.c -------------------------------------------------------------------------------- /libarchive/archive_write_open_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_open_memory.c -------------------------------------------------------------------------------- /libarchive/archive_write_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_private.h -------------------------------------------------------------------------------- /libarchive/archive_write_set_compression_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_set_compression_none.c -------------------------------------------------------------------------------- /libarchive/archive_write_set_format_pax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_set_format_pax.c -------------------------------------------------------------------------------- /libarchive/archive_write_set_format_ustar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/archive_write_set_format_ustar.c -------------------------------------------------------------------------------- /libarchive/config_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/config_freebsd.h -------------------------------------------------------------------------------- /libarchive/config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/config_windows.h -------------------------------------------------------------------------------- /libarchive/filter_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/filter_fork.c -------------------------------------------------------------------------------- /libarchive/filter_fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/filter_fork.h -------------------------------------------------------------------------------- /libarchive/filter_fork_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libarchive/filter_fork_windows.c -------------------------------------------------------------------------------- /libcperciva/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/COPYRIGHT -------------------------------------------------------------------------------- /libcperciva/POSIX/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/README -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-abstract-declarator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-abstract-declarator.c -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-cflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-cflags.sh -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-clock_gettime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-clock_gettime.c -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-clock_realtime.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | 7 | return (CLOCK_REALTIME); 8 | } 9 | -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-inet-addrstrlen.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | 7 | return (INET_ADDRSTRLEN); 8 | } 9 | -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-inet6-addrstrlen.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | 7 | return (INET6_ADDRSTRLEN); 8 | } 9 | -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-l.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-l.sh -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-msg_nosignal.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int 4 | main(void) 5 | { 6 | 7 | return (MSG_NOSIGNAL); 8 | } 9 | -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-restrict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-restrict.c -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-stat-st_mtim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/POSIX/posix-stat-st_mtim.c -------------------------------------------------------------------------------- /libcperciva/POSIX/posix-trivial.c: -------------------------------------------------------------------------------- 1 | int 2 | main(void) 3 | { 4 | 5 | /* Success! */ 6 | return (0); 7 | } 8 | -------------------------------------------------------------------------------- /libcperciva/alg/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256.c -------------------------------------------------------------------------------- /libcperciva/alg/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256.h -------------------------------------------------------------------------------- /libcperciva/alg/sha256_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_arm.c -------------------------------------------------------------------------------- /libcperciva/alg/sha256_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_arm.h -------------------------------------------------------------------------------- /libcperciva/alg/sha256_shani.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_shani.c -------------------------------------------------------------------------------- /libcperciva/alg/sha256_shani.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_shani.h -------------------------------------------------------------------------------- /libcperciva/alg/sha256_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_sse2.c -------------------------------------------------------------------------------- /libcperciva/alg/sha256_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/alg/sha256_sse2.h -------------------------------------------------------------------------------- /libcperciva/apisupport/Build/apisupport-LIBCRYPTO-LOW_LEVEL_AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/apisupport/Build/apisupport-LIBCRYPTO-LOW_LEVEL_AES.c -------------------------------------------------------------------------------- /libcperciva/apisupport/Build/apisupport-LIBCRYPTO-LOW_LEVEL_RSA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/apisupport/Build/apisupport-LIBCRYPTO-LOW_LEVEL_RSA.c -------------------------------------------------------------------------------- /libcperciva/apisupport/Build/apisupport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/apisupport/Build/apisupport.sh -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-ARM-AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-ARM-AES.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-ARM-SHA256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-ARM-SHA256.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-HWCAP-ELF_AUX_INFO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-HWCAP-ELF_AUX_INFO.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-HWCAP-GETAUXVAL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-HWCAP-GETAUXVAL.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-AESNI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-AESNI.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-CPUID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-CPUID.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-CPUID_COUNT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-CPUID_COUNT.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-RDRAND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-RDRAND.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-SHANI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-SHANI.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-SSE2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-SSE2.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport-X86-SSSE3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport-X86-SSSE3.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/Build/cpusupport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/Build/cpusupport.sh -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport.h -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_arm_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_arm_aes.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_arm_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_arm_sha256.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_x86_aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_x86_aesni.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_x86_rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_x86_rdrand.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_x86_shani.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_x86_shani.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_x86_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_x86_sse2.c -------------------------------------------------------------------------------- /libcperciva/cpusupport/cpusupport_x86_ssse3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/cpusupport/cpusupport_x86_ssse3.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_aesni.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_aesni.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_aesni_m128i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_aesni_m128i.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_arm.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_arm.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aes_arm_u8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aes_arm_u8.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr_aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr_aesni.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr_aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr_aesni.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr_arm.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr_arm.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_aesctr_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_aesctr_shared.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_dh.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_dh.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_dh_group14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_dh_group14.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_dh_group14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_dh_group14.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_entropy.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_entropy.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_entropy_rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_entropy_rdrand.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_entropy_rdrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_entropy_rdrand.h -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_verify_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_verify_bytes.c -------------------------------------------------------------------------------- /libcperciva/crypto/crypto_verify_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/crypto/crypto_verify_bytes.h -------------------------------------------------------------------------------- /libcperciva/datastruct/elasticarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/elasticarray.c -------------------------------------------------------------------------------- /libcperciva/datastruct/elasticarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/elasticarray.h -------------------------------------------------------------------------------- /libcperciva/datastruct/mpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/mpool.h -------------------------------------------------------------------------------- /libcperciva/datastruct/ptrheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/ptrheap.c -------------------------------------------------------------------------------- /libcperciva/datastruct/ptrheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/ptrheap.h -------------------------------------------------------------------------------- /libcperciva/datastruct/timerqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/timerqueue.c -------------------------------------------------------------------------------- /libcperciva/datastruct/timerqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/datastruct/timerqueue.h -------------------------------------------------------------------------------- /libcperciva/events/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events.c -------------------------------------------------------------------------------- /libcperciva/events/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events.h -------------------------------------------------------------------------------- /libcperciva/events/events_immediate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events_immediate.c -------------------------------------------------------------------------------- /libcperciva/events/events_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events_internal.h -------------------------------------------------------------------------------- /libcperciva/events/events_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events_network.c -------------------------------------------------------------------------------- /libcperciva/events/events_network_selectstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events_network_selectstats.c -------------------------------------------------------------------------------- /libcperciva/events/events_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/events/events_timer.c -------------------------------------------------------------------------------- /libcperciva/external/queue/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/external/queue/queue.h -------------------------------------------------------------------------------- /libcperciva/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/network/network.h -------------------------------------------------------------------------------- /libcperciva/network/network_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/network/network_accept.c -------------------------------------------------------------------------------- /libcperciva/network/network_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/network/network_connect.c -------------------------------------------------------------------------------- /libcperciva/network/network_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/network/network_read.c -------------------------------------------------------------------------------- /libcperciva/network/network_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/network/network_write.c -------------------------------------------------------------------------------- /libcperciva/util/align_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/align_ptr.h -------------------------------------------------------------------------------- /libcperciva/util/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/asprintf.c -------------------------------------------------------------------------------- /libcperciva/util/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/asprintf.h -------------------------------------------------------------------------------- /libcperciva/util/b64encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/b64encode.c -------------------------------------------------------------------------------- /libcperciva/util/b64encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/b64encode.h -------------------------------------------------------------------------------- /libcperciva/util/ctassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/ctassert.h -------------------------------------------------------------------------------- /libcperciva/util/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/entropy.c -------------------------------------------------------------------------------- /libcperciva/util/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/entropy.h -------------------------------------------------------------------------------- /libcperciva/util/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/getopt.c -------------------------------------------------------------------------------- /libcperciva/util/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/getopt.h -------------------------------------------------------------------------------- /libcperciva/util/hexify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/hexify.c -------------------------------------------------------------------------------- /libcperciva/util/hexify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/hexify.h -------------------------------------------------------------------------------- /libcperciva/util/humansize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/humansize.c -------------------------------------------------------------------------------- /libcperciva/util/humansize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/humansize.h -------------------------------------------------------------------------------- /libcperciva/util/imalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/imalloc.h -------------------------------------------------------------------------------- /libcperciva/util/insecure_memzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/insecure_memzero.c -------------------------------------------------------------------------------- /libcperciva/util/insecure_memzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/insecure_memzero.h -------------------------------------------------------------------------------- /libcperciva/util/monoclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/monoclock.c -------------------------------------------------------------------------------- /libcperciva/util/monoclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/monoclock.h -------------------------------------------------------------------------------- /libcperciva/util/parsenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/parsenum.h -------------------------------------------------------------------------------- /libcperciva/util/readpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/readpass.c -------------------------------------------------------------------------------- /libcperciva/util/readpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/readpass.h -------------------------------------------------------------------------------- /libcperciva/util/readpass_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/readpass_file.c -------------------------------------------------------------------------------- /libcperciva/util/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sock.c -------------------------------------------------------------------------------- /libcperciva/util/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sock.h -------------------------------------------------------------------------------- /libcperciva/util/sock_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sock_internal.h -------------------------------------------------------------------------------- /libcperciva/util/sock_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sock_util.c -------------------------------------------------------------------------------- /libcperciva/util/sock_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sock_util.h -------------------------------------------------------------------------------- /libcperciva/util/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/sysendian.h -------------------------------------------------------------------------------- /libcperciva/util/ttyfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/ttyfd.c -------------------------------------------------------------------------------- /libcperciva/util/ttyfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/ttyfd.h -------------------------------------------------------------------------------- /libcperciva/util/warnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/warnp.c -------------------------------------------------------------------------------- /libcperciva/util/warnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/libcperciva/util/warnp.h -------------------------------------------------------------------------------- /m4/check_broken_tcp_nopush.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_broken_tcp_nopush.m4 -------------------------------------------------------------------------------- /m4/check_darwin_paths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_darwin_paths.m4 -------------------------------------------------------------------------------- /m4/check_disable_compiler_warnings.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_disable_compiler_warnings.m4 -------------------------------------------------------------------------------- /m4/check_freebsd_portrange_bug.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_freebsd_portrange_bug.m4 -------------------------------------------------------------------------------- /m4/check_libcperciva_posix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_libcperciva_posix.m4 -------------------------------------------------------------------------------- /m4/check_linux_ext2fs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_linux_ext2fs.m4 -------------------------------------------------------------------------------- /m4/check_mdoc_or_man.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_mdoc_or_man.m4 -------------------------------------------------------------------------------- /m4/check_memlimit_support.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_memlimit_support.m4 -------------------------------------------------------------------------------- /m4/check_posix_sh.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_posix_sh.m4 -------------------------------------------------------------------------------- /m4/check_solaris_c99.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_solaris_c99.m4 -------------------------------------------------------------------------------- /m4/check_solaris_paths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/m4/check_solaris_paths.m4 -------------------------------------------------------------------------------- /misc/bash_completion.d/tarsnap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/bash_completion.d/tarsnap -------------------------------------------------------------------------------- /misc/bash_completion.d/tarsnap-keygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/bash_completion.d/tarsnap-keygen -------------------------------------------------------------------------------- /misc/bash_completion.d/tarsnap-keymgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/bash_completion.d/tarsnap-keymgmt -------------------------------------------------------------------------------- /misc/bash_completion.d/tarsnap-keyregen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/bash_completion.d/tarsnap-keyregen -------------------------------------------------------------------------------- /misc/bash_completion.d/tarsnap-recrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/bash_completion.d/tarsnap-recrypt -------------------------------------------------------------------------------- /misc/describe-options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/describe-options.txt -------------------------------------------------------------------------------- /misc/zsh_completion/_tarsnap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/misc/zsh_completion/_tarsnap -------------------------------------------------------------------------------- /pkg/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/COPYRIGHT -------------------------------------------------------------------------------- /pkg/DEBIAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/DEBIAN.md -------------------------------------------------------------------------------- /pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/README.md -------------------------------------------------------------------------------- /pkg/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/changelog -------------------------------------------------------------------------------- /pkg/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/control -------------------------------------------------------------------------------- /pkg/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/copyright -------------------------------------------------------------------------------- /pkg/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/rules -------------------------------------------------------------------------------- /pkg/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /pkg/debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/source/options -------------------------------------------------------------------------------- /pkg/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/debian/watch -------------------------------------------------------------------------------- /pkg/fedora/tarsnap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/pkg/fedora/tarsnap.spec -------------------------------------------------------------------------------- /recrypt/recrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/recrypt/recrypt.c -------------------------------------------------------------------------------- /recrypt/tarsnap-recrypt.1-man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/recrypt/tarsnap-recrypt.1-man -------------------------------------------------------------------------------- /recrypt/tarsnap-recrypt.1-mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/recrypt/tarsnap-recrypt.1-mdoc -------------------------------------------------------------------------------- /release-tools/mdoc2man.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/release-tools/mdoc2man.awk -------------------------------------------------------------------------------- /release-tools/mdoc2man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/release-tools/mdoc2man.sh -------------------------------------------------------------------------------- /release-tools/mkdebsource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/release-tools/mkdebsource.sh -------------------------------------------------------------------------------- /release-tools/mktarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/release-tools/mktarball.sh -------------------------------------------------------------------------------- /tar-version: -------------------------------------------------------------------------------- 1 | 1.0.41-head -------------------------------------------------------------------------------- /tar/bsdtar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar.c -------------------------------------------------------------------------------- /tar/bsdtar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar.h -------------------------------------------------------------------------------- /tar/bsdtar_cygwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar_cygwin.c -------------------------------------------------------------------------------- /tar/bsdtar_cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar_cygwin.h -------------------------------------------------------------------------------- /tar/bsdtar_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar_platform.h -------------------------------------------------------------------------------- /tar/bsdtar_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar_windows.c -------------------------------------------------------------------------------- /tar/bsdtar_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/bsdtar_windows.h -------------------------------------------------------------------------------- /tar/ccache/ccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/ccache/ccache.h -------------------------------------------------------------------------------- /tar/ccache/ccache_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/ccache/ccache_entry.c -------------------------------------------------------------------------------- /tar/ccache/ccache_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/ccache/ccache_internal.h -------------------------------------------------------------------------------- /tar/ccache/ccache_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/ccache/ccache_read.c -------------------------------------------------------------------------------- /tar/ccache/ccache_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/ccache/ccache_write.c -------------------------------------------------------------------------------- /tar/chunks/chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks.h -------------------------------------------------------------------------------- /tar/chunks/chunks_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_delete.c -------------------------------------------------------------------------------- /tar/chunks/chunks_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_directory.c -------------------------------------------------------------------------------- /tar/chunks/chunks_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_internal.h -------------------------------------------------------------------------------- /tar/chunks/chunks_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_read.c -------------------------------------------------------------------------------- /tar/chunks/chunks_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_stats.c -------------------------------------------------------------------------------- /tar/chunks/chunks_stats_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_stats_internal.c -------------------------------------------------------------------------------- /tar/chunks/chunks_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_transaction.c -------------------------------------------------------------------------------- /tar/chunks/chunks_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/chunks/chunks_write.c -------------------------------------------------------------------------------- /tar/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/cmdline.c -------------------------------------------------------------------------------- /tar/config_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/config_freebsd.h -------------------------------------------------------------------------------- /tar/getdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/getdate.c -------------------------------------------------------------------------------- /tar/glue/archive_multitape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/glue/archive_multitape.c -------------------------------------------------------------------------------- /tar/glue/archive_multitape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/glue/archive_multitape.h -------------------------------------------------------------------------------- /tar/glue/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/glue/tape.c -------------------------------------------------------------------------------- /tar/matching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/matching.c -------------------------------------------------------------------------------- /tar/multitape/chunkify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/chunkify.c -------------------------------------------------------------------------------- /tar/multitape/chunkify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/chunkify.h -------------------------------------------------------------------------------- /tar/multitape/multitape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape.h -------------------------------------------------------------------------------- /tar/multitape/multitape_chunkiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_chunkiter.c -------------------------------------------------------------------------------- /tar/multitape/multitape_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_delete.c -------------------------------------------------------------------------------- /tar/multitape/multitape_fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_fsck.c -------------------------------------------------------------------------------- /tar/multitape/multitape_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_internal.h -------------------------------------------------------------------------------- /tar/multitape/multitape_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_metadata.c -------------------------------------------------------------------------------- /tar/multitape/multitape_metaindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_metaindex.c -------------------------------------------------------------------------------- /tar/multitape/multitape_nuke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_nuke.c -------------------------------------------------------------------------------- /tar/multitape/multitape_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_read.c -------------------------------------------------------------------------------- /tar/multitape/multitape_recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_recover.c -------------------------------------------------------------------------------- /tar/multitape/multitape_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_stats.c -------------------------------------------------------------------------------- /tar/multitape/multitape_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_transaction.c -------------------------------------------------------------------------------- /tar/multitape/multitape_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/multitape/multitape_write.c -------------------------------------------------------------------------------- /tar/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/read.c -------------------------------------------------------------------------------- /tar/siginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/siginfo.c -------------------------------------------------------------------------------- /tar/storage/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage.h -------------------------------------------------------------------------------- /tar/storage/storage_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_delete.c -------------------------------------------------------------------------------- /tar/storage/storage_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_directory.c -------------------------------------------------------------------------------- /tar/storage/storage_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_internal.h -------------------------------------------------------------------------------- /tar/storage/storage_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_read.c -------------------------------------------------------------------------------- /tar/storage/storage_read_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_read_cache.c -------------------------------------------------------------------------------- /tar/storage/storage_read_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_read_cache.h -------------------------------------------------------------------------------- /tar/storage/storage_transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_transaction.c -------------------------------------------------------------------------------- /tar/storage/storage_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/storage/storage_write.c -------------------------------------------------------------------------------- /tar/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/subst.c -------------------------------------------------------------------------------- /tar/tarsnap.1-man.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap.1-man.in -------------------------------------------------------------------------------- /tar/tarsnap.1-mdoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap.1-mdoc.in -------------------------------------------------------------------------------- /tar/tarsnap.conf.5-man.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap.conf.5-man.in -------------------------------------------------------------------------------- /tar/tarsnap.conf.5-mdoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap.conf.5-mdoc.in -------------------------------------------------------------------------------- /tar/tarsnap.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap.conf.sample -------------------------------------------------------------------------------- /tar/tarsnap_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tarsnap_opt.h -------------------------------------------------------------------------------- /tar/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tree.c -------------------------------------------------------------------------------- /tar/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/tree.h -------------------------------------------------------------------------------- /tar/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/util.c -------------------------------------------------------------------------------- /tar/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tar/write.c -------------------------------------------------------------------------------- /tests/01-trivial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/01-trivial.sh -------------------------------------------------------------------------------- /tests/02-c-dry-run-no-keyfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/02-c-dry-run-no-keyfile.sh -------------------------------------------------------------------------------- /tests/03-c-dry-run-fake-keyfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/03-c-dry-run-fake-keyfile.sh -------------------------------------------------------------------------------- /tests/04-c-d-real-keyfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/04-c-d-real-keyfile.sh -------------------------------------------------------------------------------- /tests/05-passphrase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/05-passphrase.sh -------------------------------------------------------------------------------- /tests/06-progress-output-pb.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/06-progress-output-pb.good -------------------------------------------------------------------------------- /tests/06-progress-output-v.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/06-progress-output-v.good -------------------------------------------------------------------------------- /tests/06-progress-output-vpb-1k.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/06-progress-output-vpb-1k.good -------------------------------------------------------------------------------- /tests/06-progress-output-vpb-20k.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/06-progress-output-vpb-20k.good -------------------------------------------------------------------------------- /tests/06-progress-output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/06-progress-output.sh -------------------------------------------------------------------------------- /tests/07-selecting-files-baseline.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-baseline.good -------------------------------------------------------------------------------- /tests/07-selecting-files-exclude.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-exclude.good -------------------------------------------------------------------------------- /tests/07-selecting-files-include-exclude.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-include-exclude.good -------------------------------------------------------------------------------- /tests/07-selecting-files-include.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-include.good -------------------------------------------------------------------------------- /tests/07-selecting-files-nT-full.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-nT-full.good -------------------------------------------------------------------------------- /tests/07-selecting-files-nT-partial.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files-nT-partial.good -------------------------------------------------------------------------------- /tests/07-selecting-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/07-selecting-files.sh -------------------------------------------------------------------------------- /tests/fake-passphrased.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/fake-passphrased.keys -------------------------------------------------------------------------------- /tests/fake.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/fake.keys -------------------------------------------------------------------------------- /tests/sample-backup/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/sample-backup/dir1/b: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /tests/sample-backup/dir1/c: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /tests/sample-backup/dir2/d: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /tests/shared_test_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/shared_test_functions.sh -------------------------------------------------------------------------------- /tests/shared_valgrind_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/shared_valgrind_functions.sh -------------------------------------------------------------------------------- /tests/test_tarsnap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/test_tarsnap.sh -------------------------------------------------------------------------------- /tests/valgrind/potential-memleaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tests/valgrind/potential-memleaks.c -------------------------------------------------------------------------------- /tools/check_c_function_newline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/check_c_function_newline.py -------------------------------------------------------------------------------- /tools/check_includes_alphabetical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/check_includes_alphabetical.py -------------------------------------------------------------------------------- /tools/check_man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/check_man.py -------------------------------------------------------------------------------- /tools/man_to_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/man_to_argparse.py -------------------------------------------------------------------------------- /tools/man_to_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/man_to_completion.py -------------------------------------------------------------------------------- /tools/man_to_zsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/man_to_zsh.py -------------------------------------------------------------------------------- /tools/style_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarsnap/tarsnap/HEAD/tools/style_utils.py -------------------------------------------------------------------------------- /tsserver: -------------------------------------------------------------------------------- 1 | v1-0-0 --------------------------------------------------------------------------------