pj-nodegit 0.27.12 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/tests.yml +83 -15
- package/binding.gyp +23 -15
- package/dist/blob.js +0 -22
- package/dist/config.js +24 -0
- package/dist/credential.js +1 -1
- package/dist/deprecated/structs/ApplyOptions.js +5 -0
- package/dist/deprecated/structs/BlameOptions.js +8 -0
- package/dist/deprecated/structs/BlobFilterOptions.js +5 -0
- package/dist/deprecated/structs/CheckoutOptions.js +10 -0
- package/dist/deprecated/structs/CherrypickOptions.js +7 -0
- package/dist/deprecated/structs/CloneOptions.js +8 -0
- package/dist/deprecated/structs/DescribeFormatOptions.js +6 -0
- package/dist/deprecated/structs/DescribeOptions.js +8 -0
- package/dist/deprecated/structs/DiffFindOptions.js +10 -0
- package/dist/deprecated/structs/DiffOptions.js +10 -0
- package/dist/deprecated/structs/FetchOptions.js +9 -0
- package/dist/deprecated/structs/MergeFileInput.js +6 -0
- package/dist/deprecated/structs/MergeFileOptions.js +7 -0
- package/dist/deprecated/structs/MergeOptions.js +10 -0
- package/dist/deprecated/structs/ProxyOptions.js +5 -0
- package/dist/deprecated/structs/PushOptions.js +7 -0
- package/dist/deprecated/structs/RebaseOptions.js +8 -0
- package/dist/deprecated/structs/RemoteCreateOptions.js +5 -0
- package/dist/deprecated/structs/RepositoryInitOptions.js +6 -0
- package/dist/deprecated/structs/RevertOptions.js +7 -0
- package/dist/deprecated/structs/StashApplyOptions.js +6 -0
- package/dist/deprecated/structs/StatusOptions.js +6 -0
- package/dist/deprecated/structs/SubmoduleUpdateOptions.js +7 -0
- package/dist/diff.js +0 -46
- package/dist/enums.js +20 -6
- package/dist/filter_registry.js +0 -3
- package/dist/libgit2.js +2 -2
- package/dist/merge.js +0 -6
- package/dist/nodegit.js +253 -13
- package/dist/rebase.js +11 -53
- package/dist/remote.js +0 -204
- package/dist/repository.js +1 -4
- package/dist/reset.js +0 -25
- package/dist/revparse.js +19 -0
- package/dist/stash.js +0 -44
- package/dist/status.js +1 -3
- package/dist/submodule.js +0 -38
- package/include/annotated_commit.h +62 -22
- package/include/apply.h +56 -8
- package/include/apply_options.h +70 -71
- package/include/async_baton.h +65 -84
- package/include/async_worker.h +91 -0
- package/include/attr.h +37 -12
- package/include/blame.h +40 -14
- package/include/blame_hunk.h +18 -6
- package/include/blame_options.h +26 -44
- package/include/blob.h +106 -38
- package/include/blob_filter_options.h +27 -23
- package/include/branch.h +117 -41
- package/include/branch_iterator.h +18 -6
- package/include/buf.h +18 -6
- package/include/callback_wrapper.h +12 -17
- package/include/cert.h +18 -6
- package/include/cert_hostkey.h +21 -6
- package/include/cert_x509.h +18 -6
- package/include/checkout.h +48 -16
- package/include/checkout_options.h +110 -176
- package/include/checkout_perfdata.h +18 -6
- package/include/cherrypick.h +37 -12
- package/include/cherrypick_options.h +26 -32
- package/include/cleanup_handle.h +21 -0
- package/include/clone.h +26 -8
- package/include/clone_options.h +26 -50
- package/include/commit.h +161 -58
- package/include/config.h +227 -82
- package/include/config_entry.h +18 -6
- package/include/config_iterator.h +51 -18
- package/include/configmap.h +18 -6
- package/include/configurable_class_wrapper.h +59 -0
- package/include/context.h +90 -0
- package/include/convenient_hunk.h +19 -5
- package/include/convenient_patch.h +20 -5
- package/include/credential.h +40 -14
- package/include/describe_format_options.h +26 -30
- package/include/describe_options.h +26 -38
- package/include/describe_result.h +18 -6
- package/include/diff.h +190 -70
- package/include/diff_binary.h +18 -6
- package/include/diff_binary_file.h +18 -6
- package/include/diff_delta.h +18 -6
- package/include/diff_file.h +18 -6
- package/include/diff_find_options.h +26 -42
- package/include/diff_hunk.h +18 -6
- package/include/diff_line.h +18 -6
- package/include/diff_options.h +82 -120
- package/include/diff_patchid_options.h +27 -19
- package/include/diff_perfdata.h +18 -6
- package/include/diff_stats.h +29 -10
- package/include/error.h +18 -6
- package/include/fetch.h +15 -4
- package/include/fetch_options.h +26 -45
- package/include/filter.h +115 -142
- package/include/filter_list.h +62 -22
- package/include/filter_registry.h +24 -11
- package/include/filter_source.h +29 -10
- package/include/graph.h +37 -12
- package/include/hashsig.h +40 -14
- package/include/ignore.h +26 -8
- package/include/index.h +282 -99
- package/include/index_conflict_iterator.h +29 -10
- package/include/index_entry.h +74 -43
- package/include/index_iterator.h +29 -10
- package/include/index_name_entry.h +40 -14
- package/include/index_reuc_entry.h +62 -22
- package/include/index_time.h +59 -32
- package/include/indexer_progress.h +18 -6
- package/include/libgit2.h +15 -4
- package/include/lock_master.h +146 -165
- package/include/mailmap.h +84 -30
- package/include/merge.h +103 -36
- package/include/merge_file_input.h +26 -34
- package/include/merge_file_options.h +26 -42
- package/include/merge_file_result.h +18 -6
- package/include/merge_options.h +26 -46
- package/include/nodegit.h +0 -4
- package/include/nodegit_wrapper.h +35 -6
- package/include/note.h +117 -41
- package/include/note_iterator.h +18 -6
- package/include/object.h +84 -30
- package/include/odb.h +95 -34
- package/include/odb_object.h +18 -6
- package/include/oid.h +18 -6
- package/include/oid_shorten.h +18 -6
- package/include/oidarray.h +18 -6
- package/include/packbuilder.h +62 -22
- package/include/patch.h +77 -27
- package/include/path.h +15 -4
- package/include/pathspec.h +62 -22
- package/include/pathspec_match_list.h +18 -6
- package/include/promise_completion.h +7 -11
- package/include/proxy.h +15 -4
- package/include/proxy_options.h +85 -94
- package/include/push_options.h +26 -37
- package/include/push_update.h +18 -6
- package/include/rebase.h +73 -26
- package/include/rebase_operation.h +18 -6
- package/include/rebase_options.h +55 -76
- package/include/refdb.h +29 -10
- package/include/reference.h +175 -63
- package/include/reflog.h +40 -14
- package/include/reflog_entry.h +18 -6
- package/include/refspec.h +29 -10
- package/include/remote.h +280 -91
- package/include/remote_callbacks.h +201 -186
- package/include/remote_create_options.h +27 -35
- package/include/remote_head.h +18 -6
- package/include/repository.h +324 -105
- package/include/repository_init_options.h +26 -46
- package/include/reset.h +48 -16
- package/include/revert.h +37 -12
- package/include/revert_options.h +26 -32
- package/include/revparse.h +26 -8
- package/include/revspec.h +86 -0
- package/include/revwalk.h +62 -22
- package/include/signature.h +40 -14
- package/include/stash.h +81 -27
- package/include/stash_apply_options.h +49 -57
- package/include/status.h +70 -22
- package/include/status_entry.h +18 -6
- package/include/status_list.h +29 -10
- package/include/status_options.h +26 -31
- package/include/str_array_converter.h +2 -0
- package/include/strarray.h +19 -7
- package/include/submodule.h +216 -77
- package/include/submodule_update_options.h +26 -32
- package/include/tag.h +153 -55
- package/include/thread_pool.h +56 -51
- package/include/time.h +18 -6
- package/include/trace.h +15 -4
- package/include/tracker_wrap.h +76 -0
- package/include/transaction.h +29 -10
- package/include/transport.h +18 -6
- package/include/tree.h +73 -26
- package/include/tree_entry.h +29 -10
- package/include/tree_update.h +27 -32
- package/include/treebuilder.h +40 -14
- package/include/v8_helpers.h +10 -0
- package/include/worker_pool.h +180 -0
- package/include/worktree.h +119 -22
- package/include/worktree_add_options.h +33 -33
- package/include/worktree_prune_options.h +33 -33
- package/include/wrapper.h +2 -3
- package/include/writestream.h +18 -6
- package/lifecycleScripts/README.md +5 -0
- package/lifecycleScripts/install.js +7 -1
- package/package.json +8 -9
- package/src/annotated_commit.cc +250 -258
- package/src/apply.cc +215 -108
- package/src/apply_options.cc +183 -218
- package/src/async_baton.cc +76 -2
- package/src/async_worker.cc +43 -0
- package/src/attr.cc +127 -147
- package/src/blame.cc +149 -154
- package/src/blame_hunk.cc +43 -43
- package/src/blame_options.cc +128 -164
- package/src/blob.cc +496 -517
- package/src/blob_filter_options.cc +49 -65
- package/src/branch.cc +577 -557
- package/src/branch_iterator.cc +6 -6
- package/src/buf.cc +35 -35
- package/src/cert.cc +10 -10
- package/src/cert_hostkey.cc +78 -30
- package/src/cert_x509.cc +20 -20
- package/src/checkout.cc +196 -205
- package/src/checkout_options.cc +435 -674
- package/src/checkout_perfdata.cc +18 -18
- package/src/cherrypick.cc +142 -150
- package/src/cherrypick_options.cc +83 -119
- package/src/cleanup_handle.cc +6 -0
- package/src/clone.cc +74 -75
- package/src/clone_options.cc +108 -194
- package/src/commit.cc +856 -910
- package/src/config.cc +997 -1034
- package/src/config_entry.cc +20 -20
- package/src/config_iterator.cc +173 -182
- package/src/configmap.cc +19 -19
- package/src/context.cc +84 -0
- package/src/convenient_hunk.cc +48 -22
- package/src/convenient_patch.cc +65 -35
- package/src/credential.cc +153 -161
- package/src/describe_format_options.cc +74 -104
- package/src/describe_options.cc +96 -134
- package/src/describe_result.cc +6 -6
- package/src/diff.cc +911 -920
- package/src/diff_binary.cc +20 -20
- package/src/diff_binary_file.cc +23 -23
- package/src/diff_delta.cc +32 -32
- package/src/diff_file.cc +32 -32
- package/src/diff_find_options.cc +104 -140
- package/src/diff_hunk.cc +31 -31
- package/src/diff_line.cc +35 -35
- package/src/diff_options.cc +310 -384
- package/src/diff_patchid_options.cc +37 -49
- package/src/diff_perfdata.cc +14 -14
- package/src/diff_stats.cc +77 -80
- package/src/error.cc +30 -30
- package/src/fetch.cc +2 -2
- package/src/fetch_options.cc +142 -181
- package/src/filter.cc +336 -495
- package/src/filter_list.cc +239 -260
- package/src/filter_registry.cc +77 -26
- package/src/filter_source.cc +65 -48
- package/src/graph.cc +127 -125
- package/src/hashsig.cc +120 -128
- package/src/ignore.cc +65 -70
- package/src/index.cc +1216 -1250
- package/src/index_conflict_iterator.cc +71 -72
- package/src/index_entry.cc +308 -96
- package/src/index_iterator.cc +65 -66
- package/src/index_name_entry.cc +132 -144
- package/src/index_reuc_entry.cc +258 -276
- package/src/index_time.cc +121 -45
- package/src/indexer_progress.cc +34 -34
- package/src/libgit2.cc +23 -23
- package/src/lock_master.cc +190 -197
- package/src/mailmap.cc +329 -349
- package/src/merge.cc +591 -595
- package/src/merge_file_input.cc +88 -128
- package/src/merge_file_options.cc +113 -169
- package/src/merge_file_result.cc +30 -30
- package/src/merge_options.cc +118 -166
- package/src/nodegit.cc +158 -229
- package/src/nodegit_wrapper.cc +71 -8
- package/src/note.cc +527 -552
- package/src/note_iterator.cc +6 -6
- package/src/object.cc +380 -386
- package/src/odb.cc +391 -408
- package/src/odb_object.cc +28 -28
- package/src/oid.cc +59 -59
- package/src/oid_shorten.cc +17 -17
- package/src/oidarray.cc +15 -15
- package/src/packbuilder.cc +250 -254
- package/src/patch.cc +418 -347
- package/src/path.cc +7 -7
- package/src/pathspec.cc +229 -249
- package/src/pathspec_match_list.cc +34 -34
- package/src/promise_completion.cc +32 -15
- package/src/proxy.cc +2 -2
- package/src/proxy_options.cc +203 -254
- package/src/push_options.cc +119 -146
- package/src/push_update.cc +26 -26
- package/src/rebase.cc +370 -378
- package/src/rebase_operation.cc +20 -20
- package/src/rebase_options.cc +172 -242
- package/src/refdb.cc +64 -65
- package/src/reference.cc +973 -962
- package/src/reference_counter.cc +2 -2
- package/src/reflog.cc +138 -142
- package/src/reflog_entry.cc +30 -30
- package/src/refspec.cc +98 -101
- package/src/remote.cc +1592 -1456
- package/src/remote_callbacks.cc +671 -544
- package/src/remote_create_options.cc +91 -140
- package/src/remote_head.cc +30 -30
- package/src/repository.cc +3248 -1216
- package/src/repository_init_options.cc +138 -208
- package/src/reset.cc +185 -204
- package/src/revert.cc +142 -152
- package/src/revert_options.cc +83 -119
- package/src/revparse.cc +62 -65
- package/src/revspec.cc +130 -0
- package/src/revwalk.cc +255 -201
- package/src/signature.cc +139 -141
- package/src/stash.cc +294 -312
- package/src/stash_apply_options.cc +133 -179
- package/src/status.cc +199 -197
- package/src/status_entry.cc +20 -20
- package/src/status_list.cc +85 -85
- package/src/status_options.cc +96 -111
- package/src/str_array_converter.cc +16 -0
- package/src/strarray.cc +20 -20
- package/src/submodule.cc +990 -1036
- package/src/submodule_update_options.cc +83 -119
- package/src/tag.cc +772 -763
- package/src/thread_pool.cc +748 -87
- package/src/time.cc +19 -19
- package/src/trace.cc +2 -2
- package/src/tracker_wrap.cc +238 -0
- package/src/transaction.cc +89 -90
- package/src/transport.cc +6 -6
- package/src/tree.cc +349 -346
- package/src/tree_entry.cc +87 -88
- package/src/tree_update.cc +83 -117
- package/src/treebuilder.cc +137 -141
- package/src/v8_helpers.cc +19 -0
- package/src/worktree.cc +539 -328
- package/src/worktree_add_options.cc +59 -51
- package/src/worktree_prune_options.cc +59 -51
- package/src/wrapper.cc +10 -10
- package/src/writestream.cc +6 -6
- package/utils/README.md +9 -0
- package/utils/acquireOpenSSL.js +196 -62
- package/utils/build-openssl.bat +13 -0
- package/utils/execPromise.js +9 -2
- package/utils/getElectronOpenSSLRoot.js +10 -0
- package/vendor/README.md +4 -0
- package/vendor/http_parser/README.md +183 -0
- package/vendor/libgit2/.gitattributes +1 -0
- package/vendor/libgit2/.github/workflows/codeql.yml +36 -0
- package/vendor/libgit2/.github/workflows/main.yml +98 -34
- package/vendor/libgit2/.github/workflows/nightly.yml +292 -0
- package/vendor/libgit2/CMakeLists.txt +6 -6
- package/vendor/libgit2/README.md +430 -0
- package/vendor/libgit2/{azure-pipelines → ci}/build.sh +12 -1
- package/vendor/libgit2/{azure-pipelines → ci}/coverity.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/docker/bionic +4 -1
- package/vendor/libgit2/{azure-pipelines → ci}/docker/docurium +2 -1
- package/vendor/libgit2/{azure-pipelines → ci}/docker/entrypoint.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/docker/focal +5 -4
- package/vendor/libgit2/{azure-pipelines → ci}/docker/xenial +2 -1
- package/vendor/libgit2/{azure-pipelines → ci}/getcontainer.sh +17 -11
- package/vendor/libgit2/{azure-pipelines → ci}/setup-mingw.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/setup-osx.sh +0 -0
- package/vendor/libgit2/{azure-pipelines → ci}/test.sh +0 -0
- package/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- package/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +1 -0
- package/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
- package/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +1 -1
- package/vendor/libgit2/deps/ntlmclient/ntlm.c +5 -5
- package/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- package/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- package/vendor/libgit2/deps/pcre/LICENCE +93 -0
- package/vendor/libgit2/deps/pcre/pcre.h +2 -2
- package/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
- package/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
- package/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
- package/vendor/libgit2/examples/README.md +22 -0
- package/vendor/libgit2/examples/blame.c +1 -1
- package/vendor/libgit2/examples/checkout.c +1 -1
- package/vendor/libgit2/examples/common.h +1 -1
- package/vendor/libgit2/examples/general.c +0 -5
- package/vendor/libgit2/examples/log.c +3 -3
- package/vendor/libgit2/examples/rev-list.c +1 -1
- package/vendor/libgit2/examples/rev-parse.c +3 -3
- package/vendor/libgit2/examples/tag.c +2 -2
- package/vendor/libgit2/fuzzers/commit_graph_fuzzer.c +80 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/005682ce1cb5b20c20fccf4be5dbd47ca399e53e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00574fc29fd1323e93d18d625cde80d3ea20e8cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00916ec21ddbd3c622bde6e4dc824250176b9e88 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/00b6dde4b8d5e68a5ec40d88c39134cf2f1f8bc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/020f0e77e42d8b3810019050f4c5ceadd205b37c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02739c05abc1715fac1ce995b532e482abc8d4dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02a276faa5dc8c7df5b82a57ab6cd195a13e4ae0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02de15987d68a97db3d9fd964cfd785bcbd54d3a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/02e106f97a91b1d3aef4dd2d31368ae5077bd42b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/038555bcb4cc2daf764840f79ebce4023bdb7670 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/04c159a04b0732e04ac4c59ed3356860af8dffce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0560ec993882ffbd8d46dcab0ed430089c4f2aa1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/059b3aab3fde6b4c9404aff83fed638596f594bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/06168e726aa0260f520165be4ea0c88244831049 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/066d1ec700a526b97009cedd0305b6a47242faba +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/086a5f8cbfa9f058b5c938a6eb724c9e4c5f84f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/089313c698f3e351433e9a45af2ace1d85b9673e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/092eb973a771fa14cf0b567d65bd2c99130f543e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/094b8cd1aa3e40b1f9ff83680892d52e246df0f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0ce990c9c2ec121b8c78ba2bdf84679e04c0bdae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0dd0770c34fcf6b1f13219450190616d344db021 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0e2b2e6a32733b8a625bc7e812e2ea508d69a5e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0e8d0bd07c543d708aecaca377106492b7a74fa3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/0f0d16e1b8c8671dbe1074115c1d86aa9b359e7e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/102ef78036de5a30927e7f751377b05441c41a08 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10494e7cc9cb8dff289c431d7560bcee0d1b14ed +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/107b11d86381345f50aa19b8485477a870ff399f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10bb37e18fb3c0897dabacf9c464b4d324007dc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/10ee715f64b08549c3e8261204276694728eb841 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/123e4eeb7a731f48d06e336b4d29af717f8b6550 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/125a228afb923970e0a6d4412f7257ba998594a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/130d96c16fba06dcbe7e2a661ab959a3274a4bd9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/131c5a2fec55cb0d63f7dc055d6fad5f3dc3c974 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/13e562d61acb3aa36260a819a00b07ff16450335 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1414e6e8ab6bad1b5c51fed807c514a9d6575e66 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1432d191846ae2d0e381813efcfacff2f1dba0e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/14a84cdc6f8d432be4cd3d3eafce92ae385e472f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/14e3e735dba88791f2cadd6e0dc5d662a104a6d7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1574abb020203103ea629d677edd21c967fc0f4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/169cc492ba94948a6206765436881a1a0c601780 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/16a2130c1d75129f3bae3bf8f2c2de41fb3533c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/16ba602eadfc9a3f74c0845394eda0de42b61571 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/17555fb2dfc444d171ba686667d72e388bd6c041 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1a10450d99c1e53d9b7f97b8014cb7fc01906ef2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1af670b5515231fc04b2be9038ee30a7e066b09b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1b72cfa68259e3f3b3802906902a0a29368f86b5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1c62ac5d632aa9e449a4335b675941107d8825ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1d95b5db2f802011b33d10212a66fbe40827dfd4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1e068537ce1211a325aab42ae1263a109131c9f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1e9c882c9d33304a5791ef6c98eee65e142bd7fd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/1f54935df929403a29e77591c97f767d94871aea +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/206015659641771bb0d668728c2fdc4209e65dda +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2096493a2bcc2d15b7ae5bf3112fe49c39976ad8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/209b74e08abe8c787b7c5ba81e51cb69c57ecded +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21137876575fbca357fc0c96db1de73c6737e1ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2143d9db9802f076c72a71184cd9d0cb4581e9e7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21a52a5282145407d951ac73c2ff27876783899d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/21d5c8c8ac3a09bcba5388c472df32795986a5cb +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/22170d1110a1c18009b7feb21a470681f55e85fb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/22f55dff94785f24252d7a070f713840f59b0870 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/23d10ee9694e1c66bedc7060990f19a2ac3eaee3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2435430ca19502c3b0ec4987508d4a8fbdbc898c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/244d2ea0c5c3117000b599cfab37680ba8f04513 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/248bf94143d150da2459cfdca099c30c6daff00a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/25bc53498129bb3717671f00c355d2637a91c86a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2614f60da2d7e291501397238366d27513bff773 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2651b3d5a8b4616b1faa81dabe27ab2712a27561 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/270257a2872b33dd13c4fd466cbc1ae67d613f9b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2830c6244c74656f6c5649c8226953905a582a38 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2889a85c07c20551ff0b97fc640e3c91b33aa4a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/295ce43fdd56def8948d1ba2bfa7fdf0c47b5318 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/296cbb94c4e68ab86972a174405308ee34d0c40f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2975adf222cad108ec90d8225fd655e30e3bf253 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/29f5d27760c9254ab4db661a6cd0323dd11c34ca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2a359fb09eaad968e57d353453908027645873d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2a6b65a8d6c28febaa081d220a4433f8366d02bc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b14dcade4d0919b0a17830fe353738015f492a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b298a13abbd9829e965424a1486baa13d4166c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b44d8cd8e70e25172b4c740ebe38ef411c965b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2b590c4e61fdfcf21c017b29440747a1894b1534 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2becb18a971ae30e1a8f6680982fd7305708caa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2bf78b02099a1fe4ce50d065254e843ca55e280f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2c1541ecd01aa7b9e99bccfe9804198b3e79f118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2c6798057af5894c27631ff63e845fe1e4bdc9ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2cf7eb7fe489e5acd64df755e820c871784c2ba1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2d49ba35ca404baa0d593925f36a81ce53943c8d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2d507d42ca43ffc2f3c8892826e1db74144ec096 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2e4da693e3e336d2b1a40311a7ccf94def035b6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2e71ff86128b5618f0f067c407a76ff645ae2019 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2eb777c6d7e6ee9bd7a44e37372595043aad596b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/2ec3ebffba165b9dd49e755a9e77e23aed796628 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/302703e3b0d74219868aca39ee7593944c0b2400 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3048c6908dc3176707fa8bcb0196824e3358357a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/30616cb39d3ad6060324fada03709d611ad28d5c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/306beadd9b3135a00037323760eb5377c88a403e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31464a6fbad023923a7e4700fc11564e811bcbd2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/317f4bcfecf066961ef1982d551cd14e63c9f008 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31b2248faaabbec69a06098c8cb0f69c5d0aa208 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/31d1c3d1147385d58dbe6f82898a5523320fbcac +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/32c9bc1616a78a230a3724abc02150db1cc40aa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/331e2866416b091252f0299e98d32cfb29237029 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/331eb3876dd2f3f0bd51f380ac431d86d6e3bb5e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/346bd6eaeadeafcb840ff9441614b309330db63e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/349931f447981f21476481448576e805c093a25b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/34a2da1e9adaac1b4be1d40b1ece81fe00643d49 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/34bb8f475e7384a8a39618fd15fdc5fb1b12c1a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/351a036c6eb95db9364706b861f7e75ad26194e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/355452c1da8e7689d816d67cdde040b5df7eabd7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/35c157ad2b100b4f334cddcf3dea6ef2d85462be +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/36a81a45eabfcf53e1ae0361aa234791e2fdb750 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/36ee20f6dbeb3a34e91eafbbe2e379f9ac6cfa43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/377627c19bcac6adc880202048a9eac07b5417d4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/38747e7c8bec2f9c923739d50ba54ff88ba6503f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3945843a6fab2ec71030f09b237c125b97cd3ea5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/396321d39b82ffaccbc64115117df7e822b0f515 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/396e78eb9b54e2cefb52cd76a22137c8abd6cbcf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/39c1ab66035adc104cd06a6d98b77668172d21af +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3a1078c35f5401ce09b5ba921fc348dde37530bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3aa3d8f40392d1c863d23799b8ec0aedc7191302 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b08c505601271cb92345ec7f0ff0b28daf90a9c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b41702587be45f678b36823ad2f7e5002337dc4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b69108cc919aba0248f9b864d4e71c5f6d1931e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3b90507501bb3bcfe0094f9c92cc2869f1a7dda5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3bc7fe44c3a1464dd35a4d22b482f46cdeda0405 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3ce99994986efb6df3f3568423e0077b53c7ef78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3d6cb3ba21181c9f0ab08b2608eab773f36773f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3d8ec41450b943d5dea73fb1e393960b03d7c3b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3e29e8baaac0f6c7e4cf3d5adca2ab3a2c491ac7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3e9469b3c68ba334671aacda7a7669b0e97b74d6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3eeda3bfa7abef69911c94520c009a08c49b9942 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3f0f5021016451b57f673d0603cd9e4830c2198d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/3f46540fbd94bf0337c1d0d7437ec992a3568f09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/402d9c25d5833d42630882ab5c57833266bef785 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4048bb3c26d67c345630ff9e86db551a3add6549 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/40792f23c1281842dab671e8b213fc408d1ec39f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/41cd0b5d9a9540947b7b1841a55e4c11bd4346a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/41d86e5ea3df4a0de60d42aeb16e2a5599aedeae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/42b4e5430b2b1b17a361067fb9dd33ab74e52232 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/42ef1c9d234b90acaf1651d930fc52d5f8f158f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4570c8ff26d7f31afe73b3d9a35a29bc1274d68a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/45cf4751a5929930a7c30ec10134434b9ee13c3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/46e9d351dd5bb71f7d4d8f15b3fad312c781452e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/472421633b984556b96bc20f1fcf7a98c25736f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/47f35b91699caee098cacdde0161ffab21bdfc57 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48b9da327218f9409287687a43b7eead4789a588 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48d14fca326d5d591d18d34c2821a457277819a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/48f3a33e2a027f5735d0a333ec4acd5a2aa57118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/49e0eee24eab094a9c62f6b37b6ba01f8aece4e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4b45bcb707d2a0bc23b415e9bc3d7eb1f7f0e188 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4c428300fe4866fe81cff02ad4bc14b6848f7f73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4d69c567df2e858c5f248b3fc8e4a9c04f02481c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4d88b6c9b513d5db2e07313a39b43d112d3d4562 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4da73370cf854ef8bd08c7f79b92a187cdbff278 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4e4b2827351bbfd414b718052a8f950a9e3eb7ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4ed43f7d3c0305461edcbc86f62e0c6ad56df01e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f011529809e88205421fa8ce39dcc025293bcb8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f1928b6376369ab6acf8a282284366cc3bf71ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f669eca3416c44f0d003ef2720d03e697e2230e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4f750f24ecb5080bea2845061cfd3ce4529d30ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4fab9bb2bacf562e65f4a8681c429e6ea92aaed7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/4fd757c7251c17413b3005fb38aee0fd029d89ec +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/506092de91dcf93254cdd5ad9e02a953a38099ea +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/50e934fb52d9bc5cd2a531adced1cad7f102a112 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/512e49a9e789656964988950009e6534907e6317 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51404149f1ea30ee6959fafe81a52acabed97e9e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5150f8a67399ee16178a2b08198cf91a90c0e53e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51a1fd23dfe5a8062cd4601d235509247f3bc2dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51a963486f041a60c422f0dd6da3b69c52f12fb7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/51fbf57a2a35ec33164838fa254fe605a3c868e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53068b9f9cb54bb52d076e9602ccd55f169ef39a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5314619e15fa5ee67df44481b8213a53786d39c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/533f5f00275968129846522fe01e2819746272eb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53a62799135c282435a17e032deda03eaf9daf0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/53c9d5cd849977e523d92dd2d639e9b0e721be50 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/54767a0bb3b96d39f5b2004ce3f274465f1a927e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/548de37dbe6a3829b73d976996ec9838cf608554 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5522cefa54b798ea4aba8ef2a42ad248a7fb02ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/554fab3eef5d8709f06d1d4319efe5c0c437421b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/567fe73919dae39b0bcb78b03d655643a71714a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5717a281aa722ee4a32dfa1cc72fc5d6081f6755 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/577d814e0be43df9321c5b27119c398bd00a00c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/58680611707c6188f9f067f8747b699cd2fe82d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5915b7f91dd43ec37a4718061c90cbec2686b916 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/599516e368ff621dd06d8450837350f4e9558c38 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5a2d01d141e4d523e718c30e20cb07c3ad98f33d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5a9803ef8cd88d1e8f1d6e5920b8afd170cafb11 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5ba93c9db0cff93f52b521d7420e43f6eda2784f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5bf0ca772092e6fa34b6822f61a1b1c3d7f2c6e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5cfbfb3e12b629dc9f74baf0a8741345ec288795 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5d8cc97b739c39820b761b6551d34dd647da6816 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5dcbb3e1c2fc9a191dd3f3443b86f6bc38c39e37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5ec17d081aef9872f746e88ad8b03553719f9c36 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/5f88e3ba60c11be25c47a842763d8870d23cc7f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6045e4d2bf85013c78a32e71b014ba3d4a4b7c61 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/615c7ba7ffbce955ffd964682e2a0f7ef3c767e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6189f29cbbe88ac6cb32fdefecda1bd6194332a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/627224cb8484c62992dcbc4cdebdbfa48a3c021a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/629fff0962d298a7283a3d1e1d1b940dfef9b315 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6322594cff2a99d0abb1139e6a43b06df76d539a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/63de5e8e042222d53bf05640c87da376aefb76cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/647dbb1d05fe0fab685bfe126bd9ac3a12b6bccf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/647e5e265d8d1079784fc2a3da25f7ba58126acd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/653bd480dfd1e5f4bdca702aba3dfd8da0c204b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/65485740a465377213c80fa68028727f281299fb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6551f8c8c3028006d0cc4997943df8a86ee3f598 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67799e79d33883510f85ae9705ab3932862128a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67b475481e5a21351b49789874adbc988aefd64c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/67e5a649967dee002d1c181e079748c404e29767 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/687424a4a31a66a78d1637c680c9c10746741007 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/68fa6dd52832657cb8dd7e1485d6fbafd4e93903 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/691696af1c042115f4d9f9b8e24f7b8c06ed189b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6a80152f9b1afa3a3080bf3f6aa48e84c2e18497 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6af27e4cf4c7bcce128a5949ee27fc73ab2cc71e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6afd8f82d5639b774de0dfd418ae85322f4168dd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c64a9e26e0e1480bb5e60b7044ca6ce17104a80 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c850c17db130ca0152f7c75562fa191f7ef89de +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6c9afe4527371a2baf33c5e220e4ca21a3207f94 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6ce3d40b0225923a7f4123a919b1c5d70841fad7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6cfd064aa6197813eb18f38df967ae4cdba9c6da +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6675676c53bcddc870e06605d2432e3429f224 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6e6e82579b7abae2b43d90448d3f2ead4dfcba78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6f13d23c75a562eddefafe85e208e602832294e2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/6fed59b0472927f5d2396d0ee4d7fd13579377ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/71f7724196f9f8fcfe3ee0161a84893bb9c4ab11 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7335ecb1d41e713bf3909adf5802b90e22bc1581 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/73afaa73175f461e1d19d5138e055c1649926dfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/73e2fcb45c4df90d19091056b235e7a317631a62 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/741cb2d5ae11b0a9e0608b58ec7284d75129a1f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7431bb0097a9bb52e1ceaaa8674a13cd3486a387 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7455b805995d0c96ac12f8a1c1264caaffcfac1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/74e39b8a82fc06f9ed8f83ea30545ddf6df66811 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/75d51e413d3e916560dc0c2ee5092d2f4972aec1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/75e068964ea6beb7310a154d763de74a70071f48 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/763bf498dd847bd2b4af7b611199619bd428bea6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/77064ae04581a3c6d2a77158ef1a0b1e60db414a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/783bb14d68021061f592601607f40fe232ad17c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7862814cb684310b54ef920b35403515efaba13c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/791fd85b6ffb2429e9fa5ba29eebdce214ad88c7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79396d4f6142a53e26e14aa6ccb4afb4fd8fc580 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79661b8e529e2182d5c612faba9f26e32a122b78 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7969143acb3334bffac46c6dfd96362c81644191 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/79d84866dc8c067508c02516b65c0e48cf689b56 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b61f8f4a96e309bbe64ed82637fc81492a9652f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8123f973edfb0f3cab027c0cd6b8efc7b11d6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7b8dd3093efba07f7a4d3bab4b90b8f6e4f28bfb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7cc771aab0f3be7730881a46d952ae0a06958201 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d177f4207de78d50df2493a3bc07f2cd578b363 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d2df075f3e73ea9809c31586c37ece0f568b7fa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7d386e68e4c733a1fb11c0117f379fb4b9955fbb +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4260830352479d29310bd6e1022e19a68ffe76 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7e4dfdae52be18cf95555c2eb1f54af7f69c6dde +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7eafedf7e7f20e86ecdf9ba51febf8492bdbc1f1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/7ef1829a378d66b1dd70a767729127a0dc5edcae +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/80b7d2b9d7e8c8fd7ae239b8d307b592f97ee000 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/810f577ff5c1af7807a26226af912687558158cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/81603f1fe8d8e29005418d0fc9a9b33972366038 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/81c8b4d6884f954935fa4a8e828c4637db04b61a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8226846e9b092561f85cc2956ab89d8cc1ae61e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/825cfceea434e2392cce161356e3cb5f81ec2b3a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/82603febce83d95adf68b85cabf15d43ca0c4ee9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/827f0826cc4156e19b4c4938bec74e38de62fe9c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8486397ff8d1156249676c19b419a7758ff53f9a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84d99ee359bec1b8ee0f59e9bd96f1da062030b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84e629bc7416039f1feb81fa9168d7c1ee3141c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/84e885752179076fb38739ca7bc4345716bee56a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/859ef05494c8070057810b5c20df00fc81f81cf5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/859fe592f33abc1d959c0e73ecd6cd4bffe23a97 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/860da5e8a468805b76a44b9ac99b4575be16ea15 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/865e415745cead02a826f058a5ee49099bdf9562 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/878bfce051a9c7462847d4e99b7e926dc821b7b8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/880492e4dc7259577c227bb4f075d7165e875c29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/88b7de1bd1c96454a1350286d115c0ee368511f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/896268e4a5775b7ce33923ac6daeb0810420c55b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8978f8da89f9652878edabad164f5513ef508f27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/89a6525b7db0e6ec211a484efd2880abef928d4e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8ae86cba2bba6664fc5eb97be8e9777b8825d823 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8b845fbd2aa14e4f83c4dbc8b4b0b54d06482acd +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8c4121e6ce5956cfa408b980f16d276f456374dc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8cb6a5b8ab41e3d27668d5735b5c09ff1f2eab65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8d80a70ffd362a89b88663e27f11e8ab69b70c1b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8db603c1720b3680047f831f2ea9862567a7cdc4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8dd40b2d27c7dd4b986c35d87f826da287c09c4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8e9d6e6408e5f708a1924e8370e687e2c202a4c4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8f2dff1a30ee28e5985cb9379828aea5658d5849 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/8f7d18cdd6e605b85784ada14571fd5e5a184f2a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/903ae52f0ac9af8348038b12f9259741b0de42f1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9119e331f59e9337d419739c324f49d1bd62c8bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/91d54d03b0917314ea1d67a70690df9247dd08d2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/922da3b96725bfd0e3f6ce119f1e2249d53f9086 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9277561e0524cccba2f851970b0d88ec4f4d3f5e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/92a4d571804026b7bbe957396185e079e756b894 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/931224cc80168fd362a360d99bab813ed7bbf8ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/936ea5dad3bf023c552aa0bbeea8f7f66a11612c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/93aa4e0b1864933dce0abc0df69fe3d261f117f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/93d5b084965cf1b09085c4079a972e25207b3659 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9443fd3468bcc0bc3ff8dfe765225f045ab43d0a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9624c26cefb5804b7906147d262e81ee4000b6d6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9890933a73f39208627bd36e2fe88a6d54343a74 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/989dad0448e79af10040d5080f74eba2b8a401ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/98ed4808b4a8da66a91fcea1be63be6371a7c7ac +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9928e516b85e22fbad58d562d3b7e814d9ce812d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/994c7cc5599252b5628d89cd0ba4b5574d32bf00 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/99c8557c2a02ea030de42869af42c1f7c77114db +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9a14c867272f102b84efdba73662d318c3e51cfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9a6f158c176d4a1982d541be2bc27a8afba4ea57 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9aa4af603192823a2fdc53d95ed36896bc3309b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9b40c2190123cec66af3b37212f6c567869efda3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9b6268c11d78c35db5164f1346905e602b6a49fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9c6883ba5cedb7d711b12733d66ef1a1156dd0af +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9c85c90f44b454ce0d52882c447f5ecb8d303634 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9cb7a2e89ec636da3fd41ecc49ebe25e5344e2c6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9d912dc5a3497e4b5b40b37202fc0ffbf5263666 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9dcbafe8c5345194ee0ce7eb4f6efaeb55543626 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/9f4b0f3d2d25e6405ba6093f24d0605327711573 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a047bf683239fa208dbac09424b105820ac23f43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a1379dcd89ef5e73eabbfcc395113e3636e0ae09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a38c7ef56adabd0916abac514154b1f362d40434 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a38ec6ad4a8466b4feb88e67b16524e8f3feac64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a3fdea21020268b3b2409c1115d50697d9ae8f8c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a45f1987a444b2c27e90fc1477e8b0815f75383f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a4682958fb7029384c0a01a4a1356ac6f2f44fe1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a4de41561725960d6f48f210a4fb74d527f7b0c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a5935f34435ecdd6587ad4f77b20d479d3387dbe +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a5b394beb2b1d463ad80924a8c8c70584bf5c629 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a62bc806f8c98ba7986243c2185a0548a8dd57ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a7013e97948893e0118c686c06e332cc611bea7e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a74f5df8c7f25c37c15c0f74ed50019d17338225 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a7ab3559fb3da3f027e67091116253f3bdfd7828 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a845c8258a02022d447ea9249788b345f5504648 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d3e026e2393587eb170afb32e94ff0e1f8a8be +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8d547e41ee21e163e65cf0a186d469dfa50ec19 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a8fa22521dd6813e595cc0a9586ee71fff305fe2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a9969442d585d9a53259c71c73b095701280eac5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/a99789d0ce2d7b937aaa8afa3cfc0f4ccd7be95f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aaca30ee3ab38edfa2b061fcbcbca0c0ea657f15 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aacdec3f05e98eb6eedddb9c6edb968e1a63c551 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aadd85127241b94a41d02d9e9699e3e9773de1c9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ab8ad126702803d21dbafc85713bbee7f25f36e5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ac26f9afd599ff6f33396c2e02130654f3e2390c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ac8b129e4756fda0c50c9dd0eb13e34c7b41ce8e +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aceaf3b72c2627dd3dd065974b854150681c093f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ad1fcdc3bf806392e754a902eba9edd3b344c31f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ad8c80e532482f9dfbfbb7c0d447f1f4e592bf72 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/add92b71bf897da2f71f691e6abcb6d02cb8e99f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/aeb8ccf6d82be9236c9e689e1580d043bd701eb0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/af1a827aedbf674fff2bdeb5589554eec62787ab +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/afaab9a75414d231176ad4582b6f8d81b5dbedb3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/afc12c4ebed1f3ab962d7dcef110b5328b1e24c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b0044f3744cf019658d668a33f8d1e53ef8bd6ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b06adc81a4e1cdcda3786970ca07ed9dee0b6401 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b139802a1cc90fd5b86cae044c221361892c688d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b8f251542db01bdb01be3b6d5b117b07db1834 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b1b9af93f84ed6861b9c0ade39980e89ef828c8f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b2eae68035cafd4077f6a4c3e4e961fdc1e8122b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b32897a6aedaa8c5a6e656dd808bafabc4ee5608 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b376e4fc517297f92ac1713803ae3b60d5ebbe43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b3fd100b139cfbffaad68aacf7d462861e9dca35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b40808ca955faab4829811bced1cccb2ab58ea58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b43daf9f87a514bce74af3e5a39284c69c4e7011 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b477da07f3e5796ff4a98c8a5bdb0e4a634954bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4a2ef09cf59ca5ccf810a6f001cce710cc02f6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4b75e588cb83430c502a34ec3dcfaf774a00359 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b4ce98acd2b288b6cfc00461e2e15e0f8004030c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b75563f30f7e4fb369d2449b723ee8b282d03eff +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b7a0a820afa7057081de186728d0d887131d9314 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b7e880446146c735a3f820fb93969c8c172c2fb5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b833073d3006e7cbac03c494603a9b75e7b2a723 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b89459c1fb6fc918db4c81a32a75ee66217f9ab8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b8aab6c9b2c706f8df0ff695ff94969171f9c807 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b9751182a36acb79b77585e1e379857a530e95c8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/b9ddb239b5a2c1348d972ec70a08507c35ba4432 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ba8f573256a0fbb95c5626f399ebc3ef50bbd826 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc165749042d5425c5d6d4e29b17769a2315a80d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc910bd349319e1ed44d7c7266e3ac99cc29ecc6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bc97b1d4f57eb7770bc3983e2d57c8c01b21d29e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bd06f768e35ded4437cb88e2bc0ddd0bea3fa84c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bd702faff9725a7a1957fd0f85cc52799f37b682 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bee4464861e1cae3cfdd5fbcb340efbf02e8d8ca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/bf7ad994b098ec85d62683a16e067635e21a8af5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c054fc89ed72101dec861668ff1738ef85b728b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c06752415ac037fefe5172dc7245cd7c49ca7fca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c0c8b54354d172a0be751e3e9b80be961bb15ddb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c0e7ca9b5b4d0e72d23d7dc9e9d1f2463a17a20d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c13576a29c98bee02aa47f646f5f170f9b7d83f9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c14edf1d34f40b3cc74772c81ebe5d72172cc662 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c2789364cb35d111f08f924d0d7550ea9785c61e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c2d8b07acb13e43a89b6c4afb3ecb9817dd4a8e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c36ed796c1bf839668db8fc3475a2ffb32ad8ceb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c41ec9dd94427423e4704721e7f21eae0c44ef20 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c42c544fa9dbb1264b39bf920b40985384db1d16 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c45ec3f594abc15de0a8cc3ad748ba23cb34ec64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c49004d980961f288616a4eb9ebf68123fd68ffa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c4c3c3c8df24adf505127627b3090116de78d9a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c5c1921293af4a5953cb386092694042715fcfb3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c615caad21cd8a754fcb2008420234c5511c62b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c6a9ee3f8fdc42566c4799db3912a83c8c438d7f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c6b661e976282051285b913b3728383f36103ef8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c716ba47f810c238fe7bda1fbdc7b1ccc34e9848 +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c85b2fa4421302e2fa333a9e33d59a882aa04f4f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c871d135f2d3117b326688355bc0fa6f26d56cd6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c915b02265a27d185a8b028305f082ddb3ebd704 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c952d38b3e642db4795d7f954b85f4f6d2a041aa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c98ee52065736c4172f6ee0c31977bf1b560d685 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/c99b183a2cd0dd8a4c1a141cc6eebb0311501fa5 +1 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ca0cd26baff2f2c0759e619800ebbe7314d2bb95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ca3e0d745c35d7cceb0f6e3f8a709eb658b7e5a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cac667320e99e93a796bb89842de4675735eb4a4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cb41b00e9db33a07e27b3ee05d3bbecaf853b963 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cbdbd3f320eee627097778f15b9fb2c1dc2bd15f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cc7f114000c83abb2ab17f0deab6dcfc2acde7f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cc9bb93a6b7a1362a15f04898845dbe1447ec382 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cce7355f826bbcf3955394596d358abc7df6fe6f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cceff2878a558166fb5bf2a0354c1be31dcc4e21 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cd96909f3ded7aa54bb2ffd2f2f47f8acc6f99e2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/cee9f69d7d1a227833fba127a529ea2a10341da3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d064f27a3109afde629165432f78f389da73ff07 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d07e3094f02b0c0e3bab370684c2d8c5634224d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d0ba3413d5706de17de64824d78233d48c6efbec +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d136511364a74973b009f2be9b021d4122f71a6c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d1d215c40bcc8dd4ce02b0c0621e90b183b40b3e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d1e35b137b2027b61def408f3f3c8cf9bcab274e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d349d137e57fb1a60ab8babd20e2acedc7a9042e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d3714ec4d3acc6262295b0fc99c6ba699f5bfe65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d419df696512216074f1c6b17ea1dfc81c0e6e20 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d49ad4fdafac251ceec32481826228c1698360aa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d4f85ba549c87ccaba59971a25da7e07b57c9f4e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d51ade0715bcea7decee2a045934599a10c1b07a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d5447fb72c97462a3f47c8b2d55deb0afaa225f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d6611a91c29291872ed2932455cb15ddb3801323 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d676f5e7efd6de6f2e1773231479471d2bba7261 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d6a21eaa08a957d8f428192e193c2508fca2c218 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d778052a29539344a9e3144e262e68df9628ebde +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d884f6944adfff7cb41728062bf91cac5cdacfc9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d89aae18d8e320bbae55eaae6a0514d7e005a883 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d926fde818c63f7b34f38c9f018bc833bc0bf7e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/d9d542d7c56774143cb6362e5a63739055469349 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/da99bc9ce5b831f132dfb2eb11b8537e5cccfcd4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dabff2729fa69ab507fb00b7392aee1262056a29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dac4f4b91e33847bcedf7c66ef6e4ad0181e8ad8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/db10ff6d01c7a66aa1823b9f99193590ddce99c6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dbbda2208fa688a5275dda0d304630db01ca081d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dc47c5037be68a2747ff8a9fa450e1078a5ac5a5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dc760f136b123e38677aec72853e3365f08010fc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dca41b901bf1612d4197e6a450366a00ac036ec3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dca62f21fce50d1c8c51b82e0d7eeedc6746e652 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dcc7e6c444f95b10d634b1137413824e2cd68f62 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dcf4b6addda69040f792c9b860ade2af0b77a14c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/dd6178166ac1eed82d132fea491bcda0d953227c +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ddbd5d3074323ccd7cd70bf5de5a2f30de977d99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ddd8ec5632bf1b8153d03a4537d3d76517c497d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/de7a56f36e10d7b9ff43160b1cea3e76b24386d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/defa60aa46ea5a47c09b6962b4e4296ef1bcad92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e0ae419425207832518d66c0ef35d11cbdc20361 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e0f519accbf15bc57a1bf1d7cc46d2a0b07a67f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e128eff8ca7572d9bb0bfc84f64d79c52afc2c67 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e17fdc21ae03243bd1d31bb6301b4187cab6fe47 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e340ace35a2db7f89d6aa21cc1300766a74be4e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e36dfc11bcaab1e42df13924a2d7da024684db2e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e39e0c87ac5ce0b78c89ae2df84226baba666372 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e46b4666c6bfcd6f589ec3617a48cce9c968e833 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e57219555e11f9221d3166d5029ed2ad92300608 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e58ce590c2454e7ebe18e0a31a943b0b754fbd13 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e595f8fef5c8014cb0867978c6580301078ca0d9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e5b76398f60628e879328d7009b9fa89feea14cb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e5cec0217eea93b18a59d76b0aed6b46b13fa6a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e637b4e0b47d0d6cd870502e6a2d6a53bf917f73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e7a6cb6e5a1552837fdbee9025fc48a9373f8564 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e7f57c48016e1180c9af95acd34470881f10bd06 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e8253c668bfe37df5c5ada3226860cee74fb33a2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e8f9981443c34ece02bca3c66130f3429d7b3375 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e91ed5416bbcd1b03803197b99c08f42c9869139 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e94201cfa88df7b198abd3abae9007a6780b52a7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/e967bbd6a0d251ae62c9c38b784271d707f792c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea01737ceed783b3e0f66d9d0c409cb496c1d526 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea40f7879a58d1e52a46404c761f76a949e14a31 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea5ad04a54f95963baea1f47845847626e08dd55 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ea608a401f54b0ca70e42b897f0c8ce6efdbc0ef +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/eb8700d6b3728e6e70c2a0fe504543771639f2b6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ec1f271b04c322353865f4819153d46df7def873 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee215536e7f0cfbd07b53dd65c5af9a604a01830 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee4d4393d7d79b755f85ef5bf8f6e3d743bfa258 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ee8099331b2c392e7e036ffcd4a9b36ec2c2082d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/eede9da76db25513f8347f972e170102831de91a +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ef707cdeaa9548b6c820f769c1d8ad607b3c4514 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ef98609d8196dc158365dfcbbc47e3d1699c50c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efa38b4269f978f3714b44b501831bea678244e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efba428e29811d233720ccaaf41966a309312a29 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/efd514f056d8d83498b4724249c4623560e0390d +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f00e449ba67ef15e7f29df1e6948c28155d72baa +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f0a83929d588466051dced6eae0c387db307d646 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f0e53b72e5d69467e7c014474028ea734f4fcb26 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f186265b3f10f4383f4174e9fb74f0a0cdfa3fca +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f18932fcce5a9db5d6c8f59d622eabc25e255e12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f2ea163bddb95d67597e2a747779ebf4651cb2a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f2f7d48a6d86143ecb4969808d634163576065b1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f34a833faf2b0dcbae8aaad142c76c7c7e534e99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f5c044ce01645c069334698fb8c4750e44835912 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f680112645c2502f0612e9d017bbb50cb28affbf +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f6b778d1b34415a7715905f54968c8b6eb057912 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f6ca6a62dc885c6b2a4b40c4aa1a7cb8118e30bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f733a8770c23fde182d2fef7e0d96e67244274d5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f8529ddf17d4505c0932c3d40abe33cbfd8c6f22 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/f96f8419a3fc3719ae86d64e1147e7b7f66a2470 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fae241a6c87af37781a3b49e534b7ddb6636eda8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/faf8817a04b77c6a976ab0a3d1e905f79bb7f799 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fb3e769019fb25d384d4be9d38e4cbce00a6adbc +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fb9b4b2a46f1c65076340a7bd03b076eb101b760 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fca9b0a398832c9ba02cdc811f625b97d5beb18e +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fcb1b42c706e61245d5e86f708be777ae63f2772 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fd6c463e7c30b0e51198c0d1ebbea25f20145e3f +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fdcbaa49097ad120c6d7709b29d5b65b8cf8e719 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/fe46775b28a2923b8770b44381552a8a1560d875 +0 -0
- package/vendor/libgit2/fuzzers/corpora/commit_graph/ff04441135ef3308fec2687cf688069c6df8aa31 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/037cbbe0dc03807dd9d9e8629f1712d7df34ee18 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/039ee34fef8f323ed618a10abc0109df123d0cb5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/054ee2c82bdb6a170106eb5d35f21bde2119d584 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/055ca4cbc961ebf5fd5c922b4f73880d3fbfe39d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/05c4e5eb1b97bc9b6973921fcb30d4c5e2eb79e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0672eeda541a191cfc68d521a3c7ac0aac4057a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06a58d1bd5562a668ebf01ef297fd774e0e587a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06bf7c2461ae1049030f31b83ae76babfcc20c83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/06c2db67ea65758d971346bfd6beaa61ed12f22c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/07f88eefaf12609b7370fe78b82be2955f1b41fd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/08495c5f3828a56c167de870d385c46ffdce03c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/08ec8594e5b35fb9e8e0726584f720154f0b2b5d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0903e378a493c596298074d6bff8de7f9ac25aa7 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/09144a846f90f894049ef8a0ed0cc7ab4588dc6c +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/09b40dd618373bfe4d3f2838f686a70f645e640b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0a00ef44d234c18d365ec41724dbf4f21b09d0c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0a94e9f4a9b8cf56d52a9e3e7f2fa9a0a5c80d30 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0b35a123104b7872a7f15a710a23ef3594ace04d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c3d7e6be32c014ea873440b0f095961d391af1a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c65de477b89afc312a7e89cde06f8a17f65bd54 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c81d0f368e979d2a0eb4598cbf1c9283936ba0c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0c95a44ae995070a5279a2991c36de2251081460 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0de38e2cb13167df7d5a882570633596f64bc4f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0de96aa193045315457ade63c2614610c503db9e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0e02deca2b16d71f8637933bd56dc8592ed9fdff +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0e44fc9176fe2c1bae4209369da5bc057f54b2d2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/0f6c5fc9b6a68835364bbef8937560ee5a481938 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/10d542d5c7da060a5f0664e21478a0d598e29844 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/118735f7786ae6b4c2f6b36314ab1f2cafe9c3c8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/119b58eb353aa344264005016297fb911510ea0d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/127626832c30d6d94bb29384c0fde7ac6bca75ec +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1284f1a162588d4de87ca17149474644a0863b27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1458599f19f1a967c787562bf8ec3e67677da9c8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/14ba6c1ddd05b22c6f2eae5f894721cd3efcbb16 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/158cdc0a5aa005f167a8588d0beed9eee4aa36f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/15dafc6fa800327f694b5eb2fc4ebf007be9c117 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1613ed4b2e909871f8897fd6354ff80a4ac12f87 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/16daf4cb967bb47cf4566e9be7d96d3125bd2e12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/177783dce78efee878f6d6020fd87ab107bb11a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17a5090400a1fedc45070e4b530a26f320a89097 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17dea5cfa498f4d54384289a1daed0d15a85e7cc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/17e76ae5b54316679981113f52c27edc87dbcdea +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/191ed5e9334693c53fc843f692dbc3c2c63e8241 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/196a0ba4edb5bbfd66c1cda669abf0496573cf0e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/19742b6cee79fa5bf9b27dcbe367c82d0a399904 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1a21d7581d3b0a8d67934d48e91d45bd818836e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b2f96c5d75c7ca09b1012be4e6c3a7b248ed924 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b604ff0683d0e23dc7945431f6514ba30d6ca0d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b771dd5bd3ae2b1c42c4efe6c896c83b88a4f91 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1b793a4ee73fa8bf423da70fca5f39ef32a8d288 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1c9599ce00978780519272be279f508c402e3268 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1cc0068f9f63b12dc8fdd38f9ebfb96c42664e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1de6e1f5579da6e5c40f4ee23ac62e29e4f90541 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1eec93083260ebfab5f4c6d13119cf27c374b7e9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f0f574addd363d1fed131289f301c5c033aaa8f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f3e85cffdb545c1ba7c8bbe1ca18ec13e341038 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/1f6a66a92d5f083a73a82280a0a1ae0800e56ae5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/208e422322052efcdaeb1a09bbf06c5f476b8efc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/22d75b2c3937957b14eded621b638283ce7fe1fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/22f90ff68166a409acf8f89bf60a31ad2c64ab37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/236ebad449d432b039d6ace1f250ef1fa2aa364d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/252a4e4bf7fb21792ec2f305fd88fa7c9168505f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/259e1faf7b7f12250062d36ded1193a9dbcae0f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/25ad3dfb655ab4c853d0d277872310d9579c8e83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/26210f5b8fdbf81b312feea48659ec6e2e083c0b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/263a2a0915be36d8cb2bc30774e37e0344262347 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2679bfbc2f4f7c10a304245da4e156e235377b63 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/270b7b567a63dd94bb2a90448bbbc2e2bbc4a261 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/271cd5c5e254a293d115588ee130040ef26b59e8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/27839a8035b48f8c19ab073808a03a95b6a90cc3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2810c385c9285cbdb65bcdab5175999fe547cbad +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/28afaf4ab4b092ccf987661e58009f96126bba63 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/29f842e86a891cff9f0b44c8aec19f7e23a47000 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2aa2549f617f19402d1feac61d4ca1af3545cc8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2b73c2902eda6da41321493601003b29c3445713 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2bcec1274c5e7b2d7a581d851c016ef5b553fabe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2dd9a328b6d4e29e42684347be5c4b7cd7dc1a66 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2ddc17ee7ee89bb7dbc673328d5f3e55c76e686e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f71d5e99dc93618ed99fdb7c244a8f5e4a7eb4a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f7cd0154d71a83e7b104670b2a77fbd285ffde2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/2f9d40ef790f5213234e95d123dce942b2d1d389 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/31577bacbca7017308d2a0c9ebfdd4fce513bbe4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3278f1bab88b80597d0066812d49f8bd3c7b1dcf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/328160cae6235605ff70951a2f6ac669ba7bb397 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/337ed1bf91701a4c8926840259077e55938c6efc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/33a97d83ff7a774797b1751ea4bffbb4a22c58d9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/341021da9516401cf364ed2b7dfdda346db04f2f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/341773a439cdecc58f55fb205ac584cd93ffe0f2 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/366091157510e40bca08fc2102b9018ccf4697de +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/37096157e2f9f2ec8e0b97b21d335bd653f3edbd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/373a74b8613d09babcb567f91047e7b556a8de90 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3748b07ee7bec7bdd202ee14222cefca182417d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38b7906b9f956dca01dc92d0a901388ec1cbc8b1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38ddf3424559f1a6e7687eff8469a358184b833b +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/38e31d0a7dcc3835ce1a4afeeda8446fb3d7ed73 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3955ec4497b226391ef9eb40f38af6dee4fa26b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3b6b424342133feb0f587f22bcd8f21595c004e5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3bb71f41200e0ebf8d19532e7d6e384c48aa2d03 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3c5a6063797aba9ffe5ea9903bbfcf87193652d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3dfb9927d959f2462f6944a32d080b60a265abfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3e19242a63ec92a0c3f7138ebbc31bfe7cbd40cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3ec53ce4ea1f41f040a3c2beed929572af95dd43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f0762fdf49a58c0d8fd6683964a85caddee391b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f71ae863c4e9bac98e49a554b8ec4d78b17492d +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3f9df30bfb66a28fbe6f1951ef7ae4ca9f19fdf2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/3fabb14670c008c22094c1d7cd7b1e23b4c48b3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/408fba9c66c5d1deb31e4c69f1dd0677844dbc1b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/40ca8645081087e950ad61bccf8d43450366356e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/412faec949b9d04498de939561664ee559a583a7 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4148bd5336f89e73b2a5416c67d491c0ec4a2b7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/41933e61fa20fbe2b190f9ae7ceae4a4b1220021 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/423d90f3fc7ddc146095ec5a4b4f455aa876b69b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/42a6c52249aa12cfef1db1bf302a483a01c972f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/42a82726f0e70da9b87b6c52bc1b3415576025f2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4458e19f99e38c61ad9792b0b3bf8ac79f8236f1 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/44a4411a8d6ed67ee3ea61d91d2afafe89295b0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/44e04754d1b6c0c045e05509dd7033d19a926b10 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/45259e9f0a2cc7739a94eccaafb37c1570f73884 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46c0d7e952200cabc08b9cd776a9f6759f4208c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46deac8631633ea3c32005124e20a2bc2bbabade +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46e7edf6e9d6cbcdabde3b48f1c4efd93be40348 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/46fe9556c28c94f7321baa2519a3cbeabbd54d09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/49223681729e73b48b26a2262e4a66b2ba00e176 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/499e61b689f6cc7e4efb0631684739c2a6f97c7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4a06ad8c4d717bd048a7a1315a3d609d70f0162d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4adb7d4791a4c6370478dff2eb987d715554bf09 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4b01c479cdc9b750a31d5e7ac5004309222d218d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4bce7460a6becba6d26984bb438d7d3aa4e4fc56 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4cc96483b6800dda296f00887b12a35154115090 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/4f3aa59bae0619c9a06b631d9cb7767591810ab0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/501840d963cedd2945018de59e0202444d7ebf4b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/50479958c030d1addceb1ca8c27f24447e555e65 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/508ba8ef164a809f739834a39d690e700101a7a1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/521d345313812e54bc6c944485e19dbb39a87768 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5369d74ac157f85b597c1b28bbd6768105e9327b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/53997b0146ff49bfe464be203b130a67ea93fd26 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/560ea8bd7d11b00e0d21631b6d9ec7e63f0a5286 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5682ebc6878e247ce9bc636d34ada6ad338fcaf0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5762abb5234edd913754b69e1ab03274c711ee68 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/579406f055070559bda3c6120107feb3e637c481 +2 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5837d16af4a9c1f2616467cc4aa9ec8836e05c58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/58901e865fe20b9fa136cca4b253d3ae73c2b78e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/58a87098a14572e46b53c87340083f999d8fcfc2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/59ae139a21448e0eb7371ddc6ef57f0c9dfe9c85 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5a7e81419f895168c555ac9b4e75a1ad4f04b34a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5b848c1f56a150d64020e9b0bb398a286dca4096 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5bd311bd846336149b2815666052fdb7e8bf2ea6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5ce77eb98473a2e01d04909939edf7aabef5762c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5e5cd5819811507ac69bd8abad27433ccd6b7521 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5ea114ae3dbb140364000c416152b0f32ce3de23 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f181bb0a79603c84534a9b8e37ecdeb1d2aeeb5 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f428ce1169e28353cedb8be3e2f6edd0ef354e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/5f9bc7729dc331e3c4d8e52df0688abad6d4aee8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/619527e1d650cd1c26e9bc61e424c9fdc04b17b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/625d3676de25188865e05db2a3933c38508406fc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6368569cfde7fbe369a0ee4695fa4d5a7d7887a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6388fe4d630064ea1ea33aa85381d9c82e328e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/64cff4e110f0bcb3ea833c1afda6e27a57dac0bc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66449b87ce47b681c6326f337bebf03366a0ee99 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66ae3584497a1823a955c33e5bc53f7434c13e49 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66e238a6ad70fb30c82171ff1b73ea71b4379355 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66f345dc060ac5a1fe8bcf0828102d072deb1111 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/66f839146ef46deed25fd2cd169a4f1a2a3533fa +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/671720ee2b7ba45920b41b8016eb5206b88168ee +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/679c7140ad60ed32aeb7ee464499dd52b0fc212f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/67c5e6ce7bb47cefe54d749374f3288a2c915936 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/69592399b45f2f83e0cc823c5f0e3865ac3fa611 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6abf97508f0ed808b7fe0d9bb2439981153badd2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6b2dfb51b35b78680cb02ff54e06f0c983c04866 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6bbf6ab605fedd41ed6c7581ec9f87c75403e9c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6c0656104902e1323f3a19c46df7cffecae94f1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6c0ce8006b3ebd8202e61fe5f4cc2285248bd1ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6cc635e6dd4e430ed4fb68a9f5add38aa02ae14f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d1b281d7bdd9887e53505fd5d040731db18ba48 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d5c35f9d87253b2fbe383bfde3775a9f737da12 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6d95355018cadedd97bed65c45a44a7ff6f065f7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6dd70e887ab94db3327d9aaa0335914a1f4986b7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6ed51a953a8b6671de417406e340d8d0a211aa12 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6f911f19652a4457c93ef92b594bc1dc2ca900f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/6fa76cbaeb3cf0417c7a372132167bcd737db66b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/71f66d3f7da318d69681a22ebbceb1a2bb290658 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7227a2dc335af13e7225536c49969f46a800750a +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/72fce27bbccf582f2023f5e168853251e576592a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/738e5543ae005a6de85dfcd960eb8e3e6faa8947 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/739d9c8868445202305d0a4e5766df1c68932688 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7438b07314917c84d348e7d9629e3712190c7da7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7490f00d660f5d8dedfa606cca241bd07be86a4f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/75c64e8b61af41b28516c2c0fe902362d55a24f3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/75e94b59a41e7f086b6f7ab3bca801251744ae3d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7612ceb3a989f97a7bb19f57c7f9c61366953642 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/76ac2328e1c979bca648b4082b8bfe6f2e2e73ea +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/76f296039ba4d666c9147ad234d43b55050808e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/777f248eea53e3dd2b726e1e0de5eeda43b6d323 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/792fcd0075bd8031a98a68ce04d6a9f23feef7b4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7a936c3e69013b2c71dcb72f0eccd99c93367533 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7b30d0cd07108f2e45ce1a3fab3f971b25dcf5cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7b87f367b5fa3bf29bae19031814e5d0120a15ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7c12e4bca60858eae13c47a66e54cd9e96a50909 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7c59f95e649b3be6344f4f835afd0d9a894c1144 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7dcb6494c3614a8690dc496309f90e0f23634c37 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/7e64b86827ea98f0a4eb54736c460a59b0c30420 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8125d9eaa09b3d2283fea73223866cb36877c4a4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/81c7fc514fa9a07b5b87b94cf9c00df2b1325a74 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/81f9df0493052d980ca13918637bc6ce565615b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82556b9345134dd689cb9d0d08d3dc8459454181 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82d35a7a6ffb333b02d0d597e88ffdd481237a8b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/82e931da372a2c69c0f10274342173c2be091f1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/83e2b53f22afe8f7ee21d30fae2619ad0d6a71e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/83f4d70189dbc0d3aaf5025977c53d4d34fc5893 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/85e17cceba7850be893afdc04c8233bea1ef6e72 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/874d4abdcd7db751eb930928231669afe90589f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/87894ec663568153d7837f49b80f6d2e99818bd7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/88052b76108b4ede342f3dd87bb6835b2f71ea83 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/884c54256c0ec2cf1c5fa08a0b3d9c2fea021300 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8858f36373db5fd6b805a768af55c21019c664b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/88fe8b6767c1bd32308208b22e0b00697e5eddf7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/898cac1610f2f2fb67eb092cd053f0006c3070e3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/89d0f5573ae1b524e7e9bdb1fb54ea4ce99e3ef0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8a55300e400efd56be5e12258ebf575c4f3b55ed +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8bf7b464aaa2c2b536aa1d76a1297c19155f5603 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8c05e8ef26302a79c89670ad3aa4e8d0bc921923 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8c15f5a268ded9663197d66e8d7d4098e0ae9bf5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8ca9e85a9e628f0016ea4e6413945b3830730c24 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8e74126a239927900a8f655c813a4b230191a5ba +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/8ee63e791c004427dd033b468b2ed7446ee6e2e0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9028113aa78b649e13ff259027a4e450d469e5da +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/90db2115b8262ebecbefbe8f0a07c451e39bca07 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/923f28a4d1917e20ee0736b90695c2123c0c987c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/92a5c74e0506d65d1a12686496452870367b169a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/92dcf94eb2f92b4e1a232eab3b3f808f4236f118 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9414502aedbef5e307897683625418dd4ac575ac +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9422e25bec5fec9f84603a85673b54b1a5e77a40 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/943754e865888063e0684aec838222522390d43e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/943e067806ae069afbc029ea7a612410e5395687 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9547646cc1a5d260df099b00ea7ee2b95567aee1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/968f7027ec9fbf75a519069ea5189e85a81448b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9691046a2f8b31319a6fdfde0506c9a72aed839a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/96a8cd5c33986cc26cc00eb2de627149f5259e33 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/972466bbc33d2d7d7c21be21c7594b51e78675c5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/980f21a3609762154030f7cf0fe98a892d20f220 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9865f12189ef977418d8410fceebb6830c74d820 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98a1096d609545083878d5126743bbc5985786a9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98c3b6bbf5dc19bc4aad894087277a36d7c79669 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/98f9cd44400b592f809596004125267acf848435 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9a97260f04ecfe0918499ede95cf4bcb3dbc2b51 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9ba0dba2ca4405d04113086309882dac6182e6b8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9c329ee4b02f2d26ee1a399c873b0452aedca3c0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9e8e638837e202d83ff606a22dd0e310150fa260 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9ee03d17e070df72547e423a412da0b6a60ad565 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9fad6bd2b07d65e607039bb2bcda0816410cf983 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/9fcbd21f4dd194a623d832422384a1519742f0bb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a019fb7f17aa36a9743c530e1f11d5613b8b1158 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a0b8c6ef20198377b19f59e41f08f4cf2107f460 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a14079a3e8cbc2112da4fa747ef20cdfd580e068 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a14d61ba0c609665d37e6c6da929cb53c5b70545 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a15cf2a13e408cb76af0091a0c286af7ffce58e1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a1ddedbdd05eac99b8b31322635771cd9c999f8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a235661c3f8b0174a1658e9c435a69577c49256a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a261397a4db5ac196c72d73ba6999e9fd4fc5c1f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a3a803fd6a56d31269717983bbdf2fceebb626c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a3d5b0b21d977e8f94d401250de1bbd4fa1d0ee0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a42f2900ca519bd15b8d6f507449d1a07de2ef75 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a4884775b414eaf9643224564f3be405519cf99a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a48da63e9a5709c24cb66f598a7a964cbc7ccfc7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5789fd83dff18079ea7ba41c999f57bee4db41b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5bb1c60191742df4a91afb622e9b22a2f0b7765 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a5fdfade1cef5e7e494dd6e3791bca5a663d7012 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a6c66f79f5aaf2c1a26ff16754fe1a8c22627e0c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a7478a05a1fc04a9e035be5593bfb6a281ec460f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a75193dd600661d2b417d4e29b23faa7d721c214 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a7ccae74c641ffcdda0042e6c04438d5b32c4cf3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a94aa5881abdea5374775b8155812121673f89c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a98d794f0f24be7a36917826121fc14a24120893 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/a993077e321bc4e1831bb5a8ac7511d90d32ae27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aa3bc67656945e43f9342d3aaaef247584d96cfa +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab111c4d72e3d6796e3d7391e9f35b4e6fefc04a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab248c42f77952d5d17d6f5203adaa5925c05c64 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ab8451fadf805e5087837d9f6d91ef7eb6fa5edb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/abbee3b37aff879b1cef47390001b89b0f6ebc0a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ac15b23f03af8be6dbbb3bbb8d3877a1f9e074a3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ac47bda12269c06d773f5f3c6517f78513a54a08 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad1f4fb57f481a00a9bb231517a3155ef0d0877f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad25e7ffabedd94833d2529886af4d459529ec9d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ad796ebb423f58187806c4a7ee7b787394353ce6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/adc83b19e793491b1c6ea0fd8b46cd9f32e592fc +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ae14b80f26f5cee2d85d5154c2cef1eefafa8cc9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ae3ba892de543801b3c1dfbce370eb2c80a6fb27 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aecc0c7f08810803da234e26e7c6fa7a9f1c0593 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/aed2e85d5d39d25e738a34f30a722680bde30368 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b00a75de1987c6f549bf73a63e8f23a2de6641b3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b02e9f951ce9f10a8eb80f1fc61cd3d2832dd7f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b04aff8ab2e133d45bf44565bd4bf9e33b795a97 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b12097ed83db761f7bb79411a59e2474de9b1199 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b1beb2f462b4cb30a09d534b9f49f2e08d76363c +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b201733b6165f4544578bd6aad3f55aeafd9a194 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b2699f25c21ffe453dcce20e31b3093e0f9b2abf +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b34a5760a1036f909e0243cd857fcef65e40d752 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b3fdacd639073cc1954bcb1f31046d094e2d2296 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b40a6dbe32c8e6a9b777331e7fd97f0d94ceca1c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b52ff2010f22ae6758cde5d529fd19de2a7d5fc5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b53a7a2afd9dfc55c328b4e06a36882c53126e95 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b548ae8a77a62b7f375b8b48e7184ceed59bc8f8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b66eaf0b689495cc7c194ab1fca7d36ae9da9758 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b680bf23da22b8b7e77d847169fe9b6968d79e8b +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b70d6e7d230fb1393b8f665adcd5658cad7059fe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b87a59f78adb3ef18b0176a8e7fe7e90c2ab4ef7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/b88c5233090e859e923acbdfa9b168f95d7fc14b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba1923ea69eec8fe765e8d1222eccb928ca6c3c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba4d695c1eb02c702bd99a3db27838c7ba617d79 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ba7e4f999dc22d223c7f75db36646bfa05848572 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bc5f0cd338d1d17a230378390aa810bc7b103cda +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bcbb4cf10018a177dd9a6c642d887e0de3d8e522 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bcfeb114df6d5c6e0c85cbe1081631bc321ff65b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bd582237a9293e2a53d8222722a69e7d215822bf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bdc83a415da40f74825379203538a2e4d27cffa7 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/be160536594c87dc07554a71c7d24cd1d718aecc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/be8f3c744a23f67fb316a39609ca11ddac025b58 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf873b027b48f3fd7b727473c832486d99ddb196 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf8e20ef6b79131ef9bab8c9c1bb7dbecbead6a5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bf90507b8f7c7eebb89edeaabf6a432d86e7df4a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bfa7a5ce666899fb3e2a7216dbf59886da672658 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/bfeaa454d8db33efabba88f146bee6c803369ba0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c0388910e8d88dcd2e65848ba2cef465caa6b258 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c0db293f75bb44668bcbb79286ebed87df141a85 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c1234da1441255244aba15ecad2a4fa7fd47115e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c2206ac3c289a759ee0e9d0d31cc336f0802f7bc +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c22340ab36e5cff088a58272f63cf69e54a1a9f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c242c9336c4c22b316e0e56d616b2d45b3318ca4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c25a51d8dfaf58d5b609729bb156a80e3b0d892f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c3419450240d06982b0d828911b188a903355216 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c36ea7651f76ae817d8d60cae580e47638741372 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c42300c021bfd35702f564e917839503922cbe9a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c45d82ddade99ef857b563e435f2efe89e58b0be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4d1e9187de1e13353b3beb3c1ab16dd62cda571 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4e98278a25011c54734494d4534a97489cf4c24 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c4f996ab08f56ce2e9fec7a0428ded510dd6a04a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c544850a7325e7226583895204f99de730525803 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c56629528d5bebdb94f85522caf0f36bbcb19106 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c5c75b58883ccf41b20b140740e2ce763c6086cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c62da85dca0d4dfb1d7af5d0520eb74993a1e3b0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6379aaaecd282b8ed6d0b4291d0d9fdc763160a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6431921184e3edf4fd3e47384c69654cdac0189 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c6f2ca17c6d313a35676cbacd094eb40fd74b23e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c83e04d58e04fccac37b9dd313eab72011fe8ea1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c88dc350b98a5c5ae0503683318c1f30443906a8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c89ee2e9e30a474b5f9532ec61d7aad78377baa0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c921be4abeb44d1ff07f76f632a16e86526bc4be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c98bdc0431aaece1e8a721aff0ea511cfb8062a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/c9c456fd3e35a942ef4ab756e04e725cf1f71167 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd1f1a31b79af77e1e764102942ba7a79dcd24cf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd57e5904254c2278e9ecf28ed7414d7aed8eef1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cd665cdc2bd6a26eb68c9af6d1728a7d4f6eb309 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ce72111c4314b22c4c7824bc8ea340ebd6d3fa84 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ceacc7ace2f4be962b0db2eeeea3fe6a00ca9dd6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/cf40769d8b4fcbac1b10ced2e0c3c1294f23fcdd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d120111a77a3e3d1d504a04bbfc5f53effa14eb0 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d1ce81240a32aec2de1b0d779aa29a62c36f291f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d21869b290cd2b448e7b8103dced97e62fefffcc +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d2bffcd01e87ce9860007b244ff1e79ecd3d4d0f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d2d668b6e28fca83da5146021879c2b006406fa4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d37abe0d299b8ad1e90f5b7af302c24f411a7ed1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d3d689a12ab3808313d5ba0044e8c67ecb4337e4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d48eb559213edf05aa2850a14194885ae2086ba4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d490f365693e49ebdeaf658b3f549311a399c6a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d54821b652a8611c486bedd8645081d3a4b1c8d1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d5586a91f9a879e8a67ec7b09a48038909918ad9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d696362920a2fad8e280293e8d1c92b18c87e4ae +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d6b546a2b1bc1c8f80028e4be10c45a06014b32d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d7f04cbca92b2122e0f437ed4dd8fd1782d40f7f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d81944a0c1ed56d11129533d9a3d0d038113d53d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d8524e83ea63c9b365c2e93af75a8100a08b1b69 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d8d9a2d06763cf6feb433cef92a80ef14baab31a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d917fbd641cc40786246387456a636899d56b5a6 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d99f9ec8b504029457185ac03ea8ba21c2611737 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9c9c90c1bbc55beb81875838e9067c473d0fa92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9e908317a6ef08a7528924672836a550d34cb5f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/d9ef71deb57fa6f40e027be2c84fa37d288e1cc5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/da8841b9d04382d62d4aeb3fde4dc78466f31543 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/db3fbb74c9c9c4185f91eca85f14c3d2c3d9f487 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/db7a31de22258d4dc17d44a27d9340946e9c9ee9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbbe57fc653930b4ff43f168565ba84ef25f60c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbe74c0d9e7b62c1fd87d5e3ea73ee04f0337154 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/dbebf36a6b91568ac059142c3ca3211226da12a8 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ddacbb379242b31a00d62fdff5777dffc1e899c2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/decd2cd9cef352610ac9e5cc461df1829543f9f0 +3 -0
- package/vendor/libgit2/fuzzers/corpora/midx/deeae69363db06972798b296a0c5c99e02cb2b4c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e03e105323e6e7b2af90ad876b5c547af90d8f6b +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e3133215848c9cde428338c9d51424c8a81b96f5 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e32a25f0347b0e95d4bea16c27a1f374847683bd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e45ce97522194abcdd7ff9beb931e20b86c97a79 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e484023d50fc1036e46a437053b965c527700d42 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e4e60e77fe3a050940d0afcc7dbab7ef06b04ba3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e51629784092d9cf811ea1bd894297f062ed7ec4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5a7e837029178b3fb6a26d77ea4574ffeaa219d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5c616e9efdd9c80181f9210d0e3a81c08fe9b4d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5e6e84e2c7770537c744bcfdbe8303afe39ef92 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e5fb20928feec1ee3114597317edc0e06c413749 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e789319791fe704e5a8ffd7cb570c8d2722ac35f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/e9fdb9f08f225b4231f01dda9c7b61e7b78bf7d3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea6780324dca9a06db28598dfb590436d846d99f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea6afcc92b8a6c9e14cc053d351909ad5b0a3fdf +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ea8c569029c0cacc4ae75e95b2f4e84abb6867f4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/eb3e80c3ea9cfe9e08b2eef117aaa522a51a619c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ec55b30741fe8fffeec584176c8d20f6a679cfa1 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ed0724a6c3804a3ab20a980b5ca48671689a602f +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/edeb545d1cf852dc9582fa764010fe844a5e3515 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ee70b920de91f1be6b4448070ee2d1bd9e08286d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ef004af4e947d25b4d1d1dd16502260d4c7a99cd +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f009d226503b73aed0f1fd952ef8725433d158be +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f0a821dffe21afd357932febaf6e8ee331f53197 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f101a2fe93dfaaed1c596022b4e509cf3a591c8a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f1101f71657385174f8cb920026a761404b4395d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f138c84e42d3cc61a219c4be9db791750f0541c8 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f1da273522bfff4a4971b4ffc31e365f60fdbbfe +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f2fe69d30ec47e78a9e92f1423698a52270672b2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f368bb6f633587a7bb271de7e20695f178c89686 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f38ced5a16edaceb5f527ebc35e7870f42586c90 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f404371362ae68ffb2837ce1766346ebb645d173 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f473b5e1cf51502345f5c1840ec3948d308dd314 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f4ad43d6f913c3be6243dfc439e4b6f5b2e814b9 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f4cde4083a974d755a38bf5ea3820f78b576754a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5888d0dcacda196d73772aabc18fe2ad6e1dfa2 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5c3577a62d401f071d5edaa77c54ae98d6a0318 +1 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f5dee0d9da0d6950069ac36b1880090a20f50f3e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f605fff495fef2719585c706c05c350812402a35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f6fdaf4e77e29c780b9e0b91637777575bebfab4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f72700bd65fa86c588607ec50d60a9c684c86f43 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f777db12ef18f002febd5af13e2b948c95d964c3 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f777e9274d508e7ac1069e2a04bedc042942491c +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f81306f8ceaec3d06d5d34afa9769d15f0d209eb +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f84c2b36689f22809d9bda00febab557c381ffa4 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/f98168fa74c26b17ad0c3002f2263beb0af7c0ce +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fa6759d6a2807bbad83ba21761772c0119122c35 +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fa8b927b25a67fa3d60b12c53ac365366cc2b52d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fc5e4b78e59daebed1118389b57a386981f2430e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fdaf408880429153cfcf5d978727cd7b84c3d60e +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fe50e7564a28683b24c57f8bcdcb3fbfa61f5c6a +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fe64b998872d3ad87df2019173ddc52686841d7d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/fec56c7cc86871aaa9c7a947c4084307cac2778d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ff164dfc56dd28709488130dc6dfc17406bf9e9d +0 -0
- package/vendor/libgit2/fuzzers/corpora/midx/ff7035b3c055718728a6025b3cdf55c34c4c744b +0 -0
- package/vendor/libgit2/fuzzers/midx_fuzzer.c +76 -0
- package/vendor/libgit2/git.git-authors +2 -2
- package/vendor/libgit2/include/git2/annotated_commit.h +1 -1
- package/vendor/libgit2/include/git2/blob.h +18 -2
- package/vendor/libgit2/include/git2/branch.h +12 -0
- package/vendor/libgit2/include/git2/cert.h +41 -5
- package/vendor/libgit2/include/git2/config.h +1 -1
- package/vendor/libgit2/include/git2/deprecated.h +102 -8
- package/vendor/libgit2/include/git2/index.h +1 -1
- package/vendor/libgit2/include/git2/patch.h +8 -0
- package/vendor/libgit2/include/git2/refs.h +6 -5
- package/vendor/libgit2/include/git2/remote.h +3 -2
- package/vendor/libgit2/include/git2/repository.h +95 -52
- package/vendor/libgit2/include/git2/revparse.h +5 -5
- package/vendor/libgit2/include/git2/tag.h +12 -0
- package/vendor/libgit2/include/git2/transport.h +1 -1
- package/vendor/libgit2/include/git2/tree.h +0 -14
- package/vendor/libgit2/include/git2/version.h +3 -3
- package/vendor/libgit2/package.json +1 -1
- package/vendor/libgit2/script/thread-sanitizer.supp +26 -0
- package/vendor/libgit2/src/CMakeLists.txt +13 -2
- package/vendor/libgit2/src/alloc.c +21 -8
- package/vendor/libgit2/src/allocators/failalloc.c +92 -0
- package/vendor/libgit2/src/allocators/failalloc.h +23 -0
- package/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- package/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- package/vendor/libgit2/src/annotated_commit.c +21 -9
- package/vendor/libgit2/src/apply.c +16 -7
- package/vendor/libgit2/src/attr.c +12 -3
- package/vendor/libgit2/src/attr_file.c +8 -5
- package/vendor/libgit2/src/attrcache.c +5 -5
- package/vendor/libgit2/src/blame.c +26 -15
- package/vendor/libgit2/src/blob.c +32 -12
- package/vendor/libgit2/src/branch.c +57 -15
- package/vendor/libgit2/src/buf_text.c +2 -2
- package/vendor/libgit2/src/buffer.c +25 -14
- package/vendor/libgit2/src/buffer.h +2 -2
- package/vendor/libgit2/src/cache.c +3 -3
- package/vendor/libgit2/src/cache.h +7 -7
- package/vendor/libgit2/src/cc-compat.h +1 -1
- package/vendor/libgit2/src/checkout.c +66 -63
- package/vendor/libgit2/src/cherrypick.c +6 -2
- package/vendor/libgit2/src/clone.c +109 -25
- package/vendor/libgit2/src/commit.c +41 -28
- package/vendor/libgit2/src/commit_graph.c +470 -0
- package/vendor/libgit2/src/commit_graph.h +116 -0
- package/vendor/libgit2/src/common.h +4 -2
- package/vendor/libgit2/src/config.c +38 -19
- package/vendor/libgit2/src/config_cache.c +8 -4
- package/vendor/libgit2/src/config_file.c +2 -2
- package/vendor/libgit2/src/config_parse.c +2 -2
- package/vendor/libgit2/src/custom_tls.c +4 -4
- package/vendor/libgit2/src/date.c +2 -1
- package/vendor/libgit2/src/delta.c +1 -1
- package/vendor/libgit2/src/describe.c +7 -4
- package/vendor/libgit2/src/diff.c +11 -8
- package/vendor/libgit2/src/diff_driver.c +2 -2
- package/vendor/libgit2/src/diff_generate.c +45 -15
- package/vendor/libgit2/src/diff_print.c +19 -6
- package/vendor/libgit2/src/diff_stats.c +13 -10
- package/vendor/libgit2/src/diff_tform.c +7 -6
- package/vendor/libgit2/src/errors.c +24 -14
- package/vendor/libgit2/src/features.h.in +1 -1
- package/vendor/libgit2/src/fetch.c +5 -2
- package/vendor/libgit2/src/fetchhead.c +8 -4
- package/vendor/libgit2/src/filebuf.c +9 -7
- package/vendor/libgit2/src/filter.c +31 -25
- package/vendor/libgit2/src/futils.c +5 -5
- package/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- package/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- package/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- package/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- package/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- package/vendor/libgit2/src/hash.c +11 -8
- package/vendor/libgit2/src/hashsig.c +20 -9
- package/vendor/libgit2/src/ignore.c +6 -2
- package/vendor/libgit2/src/index.c +109 -72
- package/vendor/libgit2/src/index.h +1 -1
- package/vendor/libgit2/src/indexer.c +50 -32
- package/vendor/libgit2/src/integer.h +77 -0
- package/vendor/libgit2/src/iterator.c +28 -20
- package/vendor/libgit2/src/iterator.h +1 -1
- package/vendor/libgit2/src/{settings.c → libgit2.c} +116 -46
- package/vendor/libgit2/src/libgit2.h +15 -0
- package/vendor/libgit2/src/mailmap.c +19 -10
- package/vendor/libgit2/src/map.h +3 -3
- package/vendor/libgit2/src/merge.c +53 -21
- package/vendor/libgit2/src/merge_driver.c +19 -13
- package/vendor/libgit2/src/merge_file.c +11 -3
- package/vendor/libgit2/src/message.c +3 -1
- package/vendor/libgit2/src/midx.c +477 -0
- package/vendor/libgit2/src/midx.h +94 -0
- package/vendor/libgit2/src/mwindow.c +110 -61
- package/vendor/libgit2/src/mwindow.h +3 -3
- package/vendor/libgit2/src/net.c +15 -4
- package/vendor/libgit2/src/net.h +5 -2
- package/vendor/libgit2/src/netops.c +6 -4
- package/vendor/libgit2/src/netops.h +1 -1
- package/vendor/libgit2/src/notes.c +10 -10
- package/vendor/libgit2/src/object.c +22 -14
- package/vendor/libgit2/src/odb.c +197 -40
- package/vendor/libgit2/src/odb.h +1 -0
- package/vendor/libgit2/src/odb_loose.c +28 -18
- package/vendor/libgit2/src/odb_mempack.c +1 -1
- package/vendor/libgit2/src/odb_pack.c +317 -114
- package/vendor/libgit2/src/oid.c +5 -4
- package/vendor/libgit2/src/pack-objects.c +36 -36
- package/vendor/libgit2/src/pack.c +272 -132
- package/vendor/libgit2/src/pack.h +19 -7
- package/vendor/libgit2/src/patch.c +14 -7
- package/vendor/libgit2/src/patch_generate.c +3 -5
- package/vendor/libgit2/src/patch_parse.c +4 -2
- package/vendor/libgit2/src/path.c +44 -43
- package/vendor/libgit2/src/path.h +0 -2
- package/vendor/libgit2/src/pathspec.c +6 -5
- package/vendor/libgit2/src/pool.c +28 -20
- package/vendor/libgit2/src/pool.h +8 -0
- package/vendor/libgit2/src/posix.c +36 -12
- package/vendor/libgit2/src/posix.h +9 -0
- package/vendor/libgit2/src/reader.c +9 -4
- package/vendor/libgit2/src/rebase.c +26 -18
- package/vendor/libgit2/src/refdb.c +30 -13
- package/vendor/libgit2/src/refdb_fs.c +59 -33
- package/vendor/libgit2/src/reflog.c +19 -14
- package/vendor/libgit2/src/refs.c +92 -44
- package/vendor/libgit2/src/refs.h +1 -2
- package/vendor/libgit2/src/refspec.c +80 -44
- package/vendor/libgit2/src/remote.c +137 -72
- package/vendor/libgit2/src/repository.c +170 -92
- package/vendor/libgit2/src/repository.h +8 -2
- package/vendor/libgit2/src/reset.c +7 -6
- package/vendor/libgit2/src/revert.c +6 -2
- package/vendor/libgit2/src/revparse.c +14 -9
- package/vendor/libgit2/src/revwalk.c +32 -15
- package/vendor/libgit2/src/runtime.c +162 -0
- package/vendor/libgit2/src/runtime.h +62 -0
- package/vendor/libgit2/src/settings.h +11 -0
- package/vendor/libgit2/src/signature.c +6 -5
- package/vendor/libgit2/src/sortedcache.h +1 -1
- package/vendor/libgit2/src/stash.c +3 -1
- package/vendor/libgit2/src/status.c +7 -4
- package/vendor/libgit2/src/strarray.c +2 -1
- package/vendor/libgit2/src/streams/mbedtls.c +8 -8
- package/vendor/libgit2/src/streams/openssl.c +13 -10
- package/vendor/libgit2/src/streams/registry.c +5 -6
- package/vendor/libgit2/src/streams/socket.c +6 -2
- package/vendor/libgit2/src/streams/stransport.c +6 -3
- package/vendor/libgit2/src/streams/tls.c +5 -3
- package/vendor/libgit2/src/submodule.c +89 -33
- package/vendor/libgit2/src/submodule.h +9 -9
- package/vendor/libgit2/src/sysdir.c +8 -7
- package/vendor/libgit2/src/tag.c +47 -11
- package/vendor/libgit2/src/thread.c +140 -0
- package/vendor/libgit2/src/thread.h +422 -0
- package/vendor/libgit2/src/threadstate.c +83 -0
- package/vendor/libgit2/src/threadstate.h +24 -0
- package/vendor/libgit2/src/trace.c +2 -2
- package/vendor/libgit2/src/transaction.c +19 -8
- package/vendor/libgit2/src/transport.c +3 -3
- package/vendor/libgit2/src/transports/auth_negotiate.c +10 -3
- package/vendor/libgit2/src/transports/auth_ntlm.c +8 -4
- package/vendor/libgit2/src/transports/credential.c +15 -7
- package/vendor/libgit2/src/transports/git.c +1 -3
- package/vendor/libgit2/src/transports/http.c +6 -6
- package/vendor/libgit2/src/transports/http.h +1 -0
- package/vendor/libgit2/src/transports/httpclient.c +59 -34
- package/vendor/libgit2/src/transports/local.c +3 -3
- package/vendor/libgit2/src/transports/smart.c +10 -7
- package/vendor/libgit2/src/transports/smart.h +1 -1
- package/vendor/libgit2/src/transports/smart_protocol.c +9 -4
- package/vendor/libgit2/src/transports/ssh.c +47 -13
- package/vendor/libgit2/src/transports/winhttp.c +98 -58
- package/vendor/libgit2/src/tree.c +97 -75
- package/vendor/libgit2/src/tree.h +1 -0
- package/vendor/libgit2/src/tsort.c +0 -2
- package/vendor/libgit2/src/unix/map.c +3 -1
- package/vendor/libgit2/src/unix/posix.h +16 -1
- package/vendor/libgit2/src/unix/pthread.c +27 -6
- package/vendor/libgit2/src/unix/pthread.h +2 -2
- package/vendor/libgit2/src/util.c +53 -12
- package/vendor/libgit2/src/util.h +11 -7
- package/vendor/libgit2/src/vector.c +23 -19
- package/vendor/libgit2/src/win32/findfile.c +4 -2
- package/vendor/libgit2/src/win32/map.c +1 -1
- package/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- package/vendor/libgit2/src/win32/path_w32.c +6 -8
- package/vendor/libgit2/src/win32/posix_w32.c +70 -1
- package/vendor/libgit2/src/win32/precompiled.h +0 -1
- package/vendor/libgit2/src/win32/thread.c +27 -18
- package/vendor/libgit2/src/win32/thread.h +1 -1
- package/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- package/vendor/libgit2/src/win32/w32_leakcheck.c +576 -0
- package/vendor/libgit2/src/win32/w32_leakcheck.h +220 -0
- package/vendor/libgit2/src/worktree.c +27 -12
- package/vendor/libgit2/src/zstream.c +1 -1
- package/vendor/libgit2/tests/README.md +48 -0
- package/vendor/libgit2/tests/clar/fs.h +3 -3
- package/vendor/libgit2/tests/clar/sandbox.h +7 -4
- package/vendor/libgit2/tests/clar_libgit2.c +4 -3
- package/vendor/libgit2/tests/clar_libgit2_trace.c +2 -2
- package/vendor/libgit2/tests/clone/empty.c +17 -0
- package/vendor/libgit2/tests/clone/nonetwork.c +8 -0
- package/vendor/libgit2/tests/config/read.c +76 -0
- package/vendor/libgit2/tests/config/stress.c +5 -0
- package/vendor/libgit2/tests/core/integer.c +253 -0
- package/vendor/libgit2/tests/core/path.c +1 -27
- package/vendor/libgit2/tests/core/strtol.c +2 -0
- package/vendor/libgit2/tests/core/structinit.c +5 -0
- package/vendor/libgit2/tests/core/useragent.c +1 -1
- package/vendor/libgit2/tests/diff/format_email.c +1 -2
- package/vendor/libgit2/tests/diff/parse.c +23 -0
- package/vendor/libgit2/tests/diff/stats.c +36 -2
- package/vendor/libgit2/tests/fetchhead/nonetwork.c +29 -0
- package/vendor/libgit2/tests/filter/bare.c +1 -1
- package/vendor/libgit2/tests/graph/commit_graph.c +90 -0
- package/vendor/libgit2/tests/network/refspecs.c +1 -1
- package/vendor/libgit2/tests/network/remote/isvalidname.c +15 -8
- package/vendor/libgit2/tests/network/urlparse.c +401 -12
- package/vendor/libgit2/tests/online/badssl.c +2 -7
- package/vendor/libgit2/tests/online/clone.c +28 -1
- package/vendor/libgit2/tests/online/push_util.c +3 -1
- package/vendor/libgit2/tests/pack/filelimit.c +1 -1
- package/vendor/libgit2/tests/pack/midx.c +46 -0
- package/vendor/libgit2/tests/pack/threadsafety.c +62 -0
- package/vendor/libgit2/tests/refs/branches/name.c +17 -0
- package/vendor/libgit2/tests/refs/isvalidname.c +29 -22
- package/vendor/libgit2/tests/refs/revparse.c +13 -13
- package/vendor/libgit2/tests/refs/tags/name.c +17 -0
- package/vendor/libgit2/tests/repo/getters.c +13 -0
- package/vendor/libgit2/tests/repo/init.c +120 -81
- package/vendor/libgit2/tests/resources/attr_index/README.md +1 -0
- package/vendor/libgit2/tests/resources/attr_index/sub/sub/README.md +1 -0
- package/vendor/libgit2/tests/resources/config/config12 +10 -0
- package/vendor/libgit2/tests/resources/merge-recursive/.gitted/objects/info/commit-graph +0 -0
- package/vendor/libgit2/tests/resources/testrepo.git/objects/info/commit-graph +0 -0
- package/vendor/libgit2/tests/resources/testrepo.git/objects/pack/multi-pack-index +0 -0
- package/vendor/libgit2/tests/resources/typechanges/README.md +43 -0
- package/vendor/libgit2/tests/threads/basic.c +7 -1
- package/vendor/libgit2/tests/threads/diff.c +9 -9
- package/vendor/libgit2/tests/threads/thread_helpers.h +1 -1
- package/vendor/libgit2/tests/threads/tlsdata.c +65 -0
- package/vendor/libgit2/tests/trace/windows/stacktrace.c +53 -53
- package/vendor/libgit2/tests/worktree/worktree.c +12 -0
- package/vendor/libgit2.gyp +35 -18
- package/vendor/libssh2/CMakeLists.txt +8 -0
- package/vendor/libssh2/COPYING +3 -1
- package/vendor/libssh2/Makefile.am +5 -3
- package/vendor/libssh2/Makefile.in +29 -15
- package/vendor/libssh2/Makefile.inc +2 -2
- package/vendor/libssh2/NEWS +1376 -486
- package/vendor/libssh2/RELEASE-NOTES +56 -38
- package/vendor/libssh2/acinclude.m4 +1 -0
- package/vendor/libssh2/aclocal.m4 +44 -33
- package/vendor/libssh2/compile +3 -3
- package/vendor/libssh2/configure +9704 -4102
- package/vendor/libssh2/configure.ac +20 -8
- package/vendor/libssh2/depcomp +1 -1
- package/vendor/libssh2/docs/{HACKING.CRYPTO → HACKING-CRYPTO} +312 -49
- package/vendor/libssh2/docs/INSTALL_AUTOTOOLS +2 -2
- package/vendor/libssh2/docs/Makefile.am +2 -2
- package/vendor/libssh2/docs/Makefile.in +14 -7
- package/vendor/libssh2/docs/libssh2_session_callback_set.3 +36 -4
- package/vendor/libssh2/example/CMakeLists.txt +1 -0
- package/vendor/libssh2/example/Makefile.am +3 -3
- package/vendor/libssh2/example/Makefile.in +49 -42
- package/vendor/libssh2/example/ssh2_agent_forwarding.c +292 -0
- package/vendor/libssh2/include/libssh2.h +18 -13
- package/vendor/libssh2/include/libssh2_sftp.h +26 -26
- package/vendor/libssh2/install-sh +92 -69
- package/vendor/libssh2/ltmain.sh +6 -4
- package/vendor/libssh2/m4/libtool.m4 +5 -5
- package/vendor/libssh2/missing +1 -1
- package/vendor/libssh2/src/CMakeLists.txt +8 -2
- package/vendor/libssh2/src/Makefile.in +25 -17
- package/vendor/libssh2/src/agent.c +60 -63
- package/vendor/libssh2/src/agent.h +112 -0
- package/vendor/libssh2/src/agent_win.c +361 -0
- package/vendor/libssh2/src/bcrypt_pbkdf.c +3 -3
- package/vendor/libssh2/src/blf.h +3 -4
- package/vendor/libssh2/src/channel.c +158 -1
- package/vendor/libssh2/src/comp.c +2 -1
- package/vendor/libssh2/src/comp.h +0 -1
- package/vendor/libssh2/src/crypto.h +6 -6
- package/vendor/libssh2/src/global.c +2 -1
- package/vendor/libssh2/src/hostkey.c +41 -2
- package/vendor/libssh2/src/kex.c +691 -974
- package/vendor/libssh2/src/knownhost.c +2 -2
- package/vendor/libssh2/src/libgcrypt.h +4 -1
- package/vendor/libssh2/src/libssh2_config.h.in +6 -18
- package/vendor/libssh2/src/libssh2_priv.h +17 -6
- package/vendor/libssh2/src/mac.h +0 -1
- package/vendor/libssh2/src/mbedtls.c +520 -2
- package/vendor/libssh2/src/mbedtls.h +146 -7
- package/vendor/libssh2/src/misc.c +14 -16
- package/vendor/libssh2/src/openssl.c +227 -181
- package/vendor/libssh2/src/openssl.h +9 -22
- package/vendor/libssh2/src/packet.c +98 -38
- package/vendor/libssh2/src/packet.h +3 -3
- package/vendor/libssh2/src/pem.c +20 -11
- package/vendor/libssh2/src/scp.c +3 -3
- package/vendor/libssh2/src/session.c +2 -2
- package/vendor/libssh2/src/session.h +3 -3
- package/vendor/libssh2/src/sftp.c +1 -1
- package/vendor/libssh2/src/sftp.h +3 -3
- package/vendor/libssh2/src/transport.c +11 -4
- package/vendor/libssh2/src/transport.h +0 -1
- package/vendor/libssh2/src/userauth.c +24 -22
- package/vendor/libssh2/src/userauth.h +3 -3
- package/vendor/libssh2/src/wincng.c +485 -60
- package/vendor/libssh2/src/wincng.h +33 -5
- package/vendor/libssh2/test-driver +6 -4
- package/vendor/libssh2/tests/CMakeLists.txt +4 -1
- package/vendor/libssh2/tests/Makefile.am +60 -23
- package/vendor/libssh2/tests/Makefile.in +223 -65
- package/vendor/libssh2/tests/key_ecdsa +10 -0
- package/vendor/libssh2/tests/key_ecdsa.pub +1 -0
- package/vendor/libssh2/tests/key_ed25519 +7 -0
- package/vendor/libssh2/tests/key_ed25519.pub +1 -0
- package/vendor/libssh2/tests/key_ed25519_encrypted +8 -0
- package/vendor/libssh2/tests/key_ed25519_encrypted.pub +1 -0
- package/vendor/libssh2/tests/key_rsa_encrypted +30 -0
- package/vendor/libssh2/tests/key_rsa_encrypted.pub +1 -0
- package/vendor/libssh2/tests/key_rsa_openssh +27 -0
- package/vendor/libssh2/tests/key_rsa_openssh.pub +1 -0
- package/vendor/libssh2/tests/openssh_fixture.c +141 -46
- package/vendor/libssh2/tests/openssh_server/Dockerfile +9 -0
- package/vendor/libssh2/tests/openssh_server/authorized_keys +1 -0
- package/vendor/libssh2/tests/openssh_server/ca_ecdsa +12 -0
- package/vendor/libssh2/tests/openssh_server/ca_ecdsa.pub +1 -0
- package/vendor/libssh2/tests/openssh_server/ssh_host_ecdsa_key +5 -0
- package/vendor/libssh2/tests/openssh_server/ssh_host_ed25519_key +7 -0
- package/vendor/libssh2/tests/ossfuzz/Makefile.am +32 -0
- package/vendor/libssh2/tests/ossfuzz/Makefile.in +731 -0
- package/vendor/libssh2/tests/ossfuzz/ssh2_client_fuzzer.cc +90 -0
- package/vendor/libssh2/tests/ossfuzz/standaloneengine.cc +74 -0
- package/vendor/libssh2/tests/ossfuzz/testinput.h +3 -0
- package/vendor/libssh2/tests/ssh2.c +9 -5
- package/vendor/libssh2/tests/test_agent_forward_succeeds.c +51 -0
- package/vendor/libssh2/tests/test_hostkey.c +5 -3
- package/vendor/libssh2/tests/test_hostkey_hash.c +32 -19
- package/vendor/libssh2/tests/test_keyboard_interactive_auth_fails_with_wrong_response.c +3 -3
- package/vendor/libssh2/tests/test_keyboard_interactive_auth_succeeds_with_correct_response.c +5 -4
- package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_password.c +1 -1
- package/vendor/libssh2/tests/test_password_auth_fails_with_wrong_username.c +2 -1
- package/vendor/libssh2/tests/test_password_auth_succeeds_with_correct_credentials.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_fails_with_wrong_key.c +1 -1
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_dsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ecdsa_key.c +38 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key.c +38 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c +98 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_ed25519_key.c +39 -0
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_rsa_openssh_key.c +3 -2
- package/vendor/libssh2/tests/test_public_key_auth_succeeds_with_correct_signed_ecdsa_key.c +38 -0
- package/vendor/libssh2/vms/libssh2_make_help.dcl +12 -12
- package/vendor/libssh2/win32/libssh2.dsp +8 -0
- package/CHANGELOG.md +0 -3415
- package/HISTORY.md +0 -9
- package/dist/blame.js +0 -22
- package/dist/checkout.js +0 -53
- package/dist/cherrypick.js +0 -62
- package/dist/clone.js +0 -35
- package/dist/status_list.js +0 -14
- package/dist/utils/normalize_fetch_options.js +0 -43
- package/dist/utils/normalize_options.js +0 -31
- package/generate/templates/templates/binding.gyp +0 -192
- package/include/async_libgit2_queue_worker.h +0 -33
- package/package-lock.json +0 -5139
- package/vendor/libgit2/azure-pipelines/bash.yml +0 -17
- package/vendor/libgit2/azure-pipelines/coverity.yml +0 -26
- package/vendor/libgit2/azure-pipelines/docker.yml +0 -51
- package/vendor/libgit2/azure-pipelines/nightly.yml +0 -232
- package/vendor/libgit2/azure-pipelines.yml +0 -203
- package/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- package/vendor/libgit2/src/global.c +0 -357
- package/vendor/libgit2/src/global.h +0 -41
- package/vendor/libgit2/src/thread-utils.c +0 -263
- package/vendor/libgit2/src/thread-utils.h +0 -294
- package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -345
- package/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- package/vendor/libgit2/src/win32/w32_stack.c +0 -188
- package/vendor/libgit2/src/win32/w32_stack.h +0 -140
- package/vendor/libgit2/tests/resources/testrepo-worktree/link_to_new.txt +0 -1
- package/vendor/libssh2/buildconf +0 -22
- package/vendor/libssh2/docs/INSTALL_CMAKE +0 -179
package/vendor/libssh2/NEWS
CHANGED
@@ -1,5 +1,1381 @@
|
|
1
1
|
Changelog for the libssh2 project. Generated with git2news.pl
|
2
2
|
|
3
|
+
Daniel Stenberg (29 Aug 2021)
|
4
|
+
- [Will Cosgrove brought this change]
|
5
|
+
|
6
|
+
updated docs for 1.10.0 release
|
7
|
+
|
8
|
+
Marc Hörsken (30 May 2021)
|
9
|
+
- [Laurent Stacul brought this change]
|
10
|
+
|
11
|
+
[tests] Try several times to connect the ssh server
|
12
|
+
|
13
|
+
Sometimes, as the OCI container is run in detached mode, it is possible
|
14
|
+
the actual server is not ready yet to handle SSH traffic. The goal of
|
15
|
+
this PR is to try several times (max 3). The mechanism is the same as
|
16
|
+
for the connection to the docker machine.
|
17
|
+
|
18
|
+
- [Laurent Stacul brought this change]
|
19
|
+
|
20
|
+
Remove openssh_server container on test exit
|
21
|
+
|
22
|
+
- [Laurent Stacul brought this change]
|
23
|
+
|
24
|
+
Allow the tests to run inside a container
|
25
|
+
|
26
|
+
The current tests suite starts SSH server as OCI container. This commit
|
27
|
+
add the possibility to run the tests in a container provided that:
|
28
|
+
|
29
|
+
* the docker client is installed builder container
|
30
|
+
* the host docker daemon unix socket has been mounted in the builder
|
31
|
+
container (with, if needed, the DOCKER_HOST environment variable
|
32
|
+
accordingly set, and the permission to write on this socket)
|
33
|
+
* the builder container is run on the default bridge network, or the
|
34
|
+
host network. This PR does not handle the case where the builder
|
35
|
+
container is on another network.
|
36
|
+
|
37
|
+
Marc Hoersken (28 May 2021)
|
38
|
+
- CI/appveyor: run SSH server for tests on GitHub Actions (#607)
|
39
|
+
|
40
|
+
No longer rely on DigitalOcean to host the Docker container.
|
41
|
+
|
42
|
+
Unfortunately we require a small dispatcher script that has
|
43
|
+
access to a GitHub access token with scope repo in order to
|
44
|
+
trigger the daemon workflow on GitHub Actions also for PRs.
|
45
|
+
|
46
|
+
This script is hosted by myself for the time being until GitHub
|
47
|
+
provides a tighter scope to trigger the workflow_dispatch event.
|
48
|
+
|
49
|
+
GitHub (26 May 2021)
|
50
|
+
- [Will Cosgrove brought this change]
|
51
|
+
|
52
|
+
openssl.c: guards around calling FIPS_mode() #596 (#603)
|
53
|
+
|
54
|
+
Notes:
|
55
|
+
FIPS_mode() is not implemented in LibreSSL and this API is removed in OpenSSL 3.0 and was introduced in 0.9.7. Added guards around making this call.
|
56
|
+
|
57
|
+
Credit:
|
58
|
+
Will Cosgrove
|
59
|
+
|
60
|
+
- [Will Cosgrove brought this change]
|
61
|
+
|
62
|
+
configure.ac: don't undefine scoped variable (#594)
|
63
|
+
|
64
|
+
* configure.ac: don't undefine scoped variable
|
65
|
+
|
66
|
+
To get this script to run with Autoconf 2.71 on macOS I had to remove the undefine of the backend for loop variable. It seems scoped to the for loop and also isn't referenced later in the script so it seems OK to remove it.
|
67
|
+
|
68
|
+
* configure.ac: remove cygwin specific CFLAGS #598
|
69
|
+
|
70
|
+
Notes:
|
71
|
+
Remove cygwin specific Win32 CFLAGS and treat the build like a posix build
|
72
|
+
|
73
|
+
Credit:
|
74
|
+
Will Cosgrove, Brian Inglis
|
75
|
+
|
76
|
+
- [Laurent Stacul brought this change]
|
77
|
+
|
78
|
+
tests: Makefile.am: Add missing tests client keys in distribution tarball (#604)
|
79
|
+
|
80
|
+
Notes:
|
81
|
+
Added missing test keys.
|
82
|
+
|
83
|
+
Credit:
|
84
|
+
Laurent Stacul
|
85
|
+
|
86
|
+
- [Laurent Stacul brought this change]
|
87
|
+
|
88
|
+
Makefile.am: Add missing test keys in the distribution tarball (#601)
|
89
|
+
|
90
|
+
Notes:
|
91
|
+
Fix tests missing key to build the OCI image
|
92
|
+
|
93
|
+
Credit:
|
94
|
+
Laurent Stacul
|
95
|
+
|
96
|
+
Daniel Stenberg (16 May 2021)
|
97
|
+
- dist: add src/agent.h
|
98
|
+
|
99
|
+
Fixes #597
|
100
|
+
Closes #599
|
101
|
+
|
102
|
+
GitHub (12 May 2021)
|
103
|
+
- [Will Cosgrove brought this change]
|
104
|
+
|
105
|
+
packet.c: Reset read timeout after received a packet (#576) (#586)
|
106
|
+
|
107
|
+
File:
|
108
|
+
packet.c
|
109
|
+
|
110
|
+
Notes:
|
111
|
+
Attempt keyboard interactive login (Azure AD 2FA login) and use more than 60 seconds to complete the login, the connection fails.
|
112
|
+
|
113
|
+
The _libssh2_packet_require function does almost the same as _libssh2_packet_requirev but this function sets state->start = 0 before returning.
|
114
|
+
|
115
|
+
Credit:
|
116
|
+
teottin, Co-authored-by: Tor Erik Ottinsen <tor.ottinsen@kdi.kongsberg.com>
|
117
|
+
|
118
|
+
- [kkoenig brought this change]
|
119
|
+
|
120
|
+
Support ECDSA certificate authentication (#570)
|
121
|
+
|
122
|
+
Files: hostkey.c, userauth.c, test_public_key_auth_succeeds_with_correct_ecdsa_key.c
|
123
|
+
|
124
|
+
Notes:
|
125
|
+
Support ECDSA certificate authentication
|
126
|
+
|
127
|
+
Add a test for:
|
128
|
+
- Existing ecdsa basic public key authentication
|
129
|
+
- ecdsa public key authentication with a signed public key
|
130
|
+
|
131
|
+
Credit:
|
132
|
+
kkoenig
|
133
|
+
|
134
|
+
- [Gabriel Smith brought this change]
|
135
|
+
|
136
|
+
agent.c: Add support for Windows OpenSSH agent (#517)
|
137
|
+
|
138
|
+
Files: agent.c, agent.h, agent_win.c
|
139
|
+
|
140
|
+
Notes:
|
141
|
+
* agent: Add support for Windows OpenSSH agent
|
142
|
+
|
143
|
+
The implementation was partially taken and modified from that found in
|
144
|
+
the Portable OpenSSH port to Win32 by the PowerShell team, but mostly
|
145
|
+
based on the existing Unix OpenSSH agent support.
|
146
|
+
|
147
|
+
https://github.com/PowerShell/openssh-portable
|
148
|
+
|
149
|
+
Regarding the partial transfer support implementation: partial transfers
|
150
|
+
are easy to deal with, but you need to track additional state when
|
151
|
+
non-blocking IO enters the picture. A tracker of how many bytes have
|
152
|
+
been transfered has been placed in the transfer context struct as that's
|
153
|
+
where it makes most sense. This tracker isn't placed behind a WIN32
|
154
|
+
#ifdef as it will probably be useful for other agent implementations.
|
155
|
+
|
156
|
+
* agent: win32 openssh: Disable overlapped IO
|
157
|
+
|
158
|
+
Non-blocking IO is not currently supported by the surrounding agent
|
159
|
+
code, despite a lot of the code having everything set up to handle it.
|
160
|
+
|
161
|
+
Credit:
|
162
|
+
Co-authored-by: Gabriel Smith <gabriel.smith@precisionot.com>
|
163
|
+
|
164
|
+
- [Zenju brought this change]
|
165
|
+
|
166
|
+
Fix detailed _libssh2_error being overwritten (#473)
|
167
|
+
|
168
|
+
Files: openssl.c, pem.c, userauth.c
|
169
|
+
|
170
|
+
Notes:
|
171
|
+
* Fix detailed _libssh2_error being overwritten by generic errors
|
172
|
+
* Unified error handling
|
173
|
+
|
174
|
+
Credit:
|
175
|
+
Zenju
|
176
|
+
|
177
|
+
- [Paul Capron brought this change]
|
178
|
+
|
179
|
+
Fix _libssh2_random() silently discarding errors (#520)
|
180
|
+
|
181
|
+
Notes:
|
182
|
+
* Make _libssh2_random return code consistent
|
183
|
+
|
184
|
+
Previously, _libssh2_random was advertized in HACKING.CRYPTO as
|
185
|
+
returning `void` (and was implemented that way in os400qc3.c), but that
|
186
|
+
was in other crypto backends a lie; _libssh2_random is (a macro
|
187
|
+
expanding) to an int-value expression or function.
|
188
|
+
|
189
|
+
Moreover, that returned code was:
|
190
|
+
— 0 or success, -1 on error for the MbedTLS & WinCNG crypto backends
|
191
|
+
But also:
|
192
|
+
— 1 on success, -1 or 0 on error for the OpenSSL backend!
|
193
|
+
– 1 on success, error cannot happen for libgcrypt!
|
194
|
+
|
195
|
+
This commit makes explicit that _libssh2_random can fail (because most of
|
196
|
+
the underlying crypto functions can indeed fail!), and it makes its result
|
197
|
+
code consistent: 0 on success, -1 on error.
|
198
|
+
|
199
|
+
This is related to issue #519 https://github.com/libssh2/libssh2/issues/519
|
200
|
+
It fixes the first half of it.
|
201
|
+
|
202
|
+
* Don't silent errors of _libssh2_random
|
203
|
+
|
204
|
+
Make sure to check the returned code of _libssh2_random(), and
|
205
|
+
propagates any failure.
|
206
|
+
|
207
|
+
A new LIBSSH_ERROR_RANDGEN constant is added to libssh2.h
|
208
|
+
None of the existing error constants seemed fit.
|
209
|
+
|
210
|
+
This commit is related to d74285b68450c0e9ea6d5f8070450837fb1e74a7
|
211
|
+
and to https://github.com/libssh2/libssh2/issues/519 (see the issue
|
212
|
+
for more info.) It closes #519.
|
213
|
+
|
214
|
+
Credit:
|
215
|
+
Paul Capron
|
216
|
+
|
217
|
+
- [Gabriel Smith brought this change]
|
218
|
+
|
219
|
+
ci: Remove caching of docker image layers (#589)
|
220
|
+
|
221
|
+
Notes:
|
222
|
+
continued ci reliability work.
|
223
|
+
|
224
|
+
Credit:
|
225
|
+
Gabriel Smith
|
226
|
+
|
227
|
+
- [Gabriel Smith brought this change]
|
228
|
+
|
229
|
+
ci: Speed up docker builds for tests (#587)
|
230
|
+
|
231
|
+
Notes:
|
232
|
+
The OpenSSH server docker image used for tests is pre-built to prevent
|
233
|
+
wasting time building it during a test, and unneeded rebuilds are
|
234
|
+
prevented by caching the image layers.
|
235
|
+
|
236
|
+
Credit:
|
237
|
+
Gabriel Smith
|
238
|
+
|
239
|
+
- [Will Cosgrove brought this change]
|
240
|
+
|
241
|
+
userauth.c: don't error if using keys without RSA (#555)
|
242
|
+
|
243
|
+
file: userauth.c
|
244
|
+
|
245
|
+
notes: libssh2 now supports many other key types besides RSA, if the library is built without RSA support and a user attempts RSA auth it shouldn't be an automatic error
|
246
|
+
|
247
|
+
credit:
|
248
|
+
Will Cosgrove
|
249
|
+
|
250
|
+
- [Marc brought this change]
|
251
|
+
|
252
|
+
openssl.c: Avoid OpenSSL latent error in FIPS mode (#528)
|
253
|
+
|
254
|
+
File:
|
255
|
+
openssl.c
|
256
|
+
|
257
|
+
Notes:
|
258
|
+
Avoid initing MD5 digest, which is not permitted in OpenSSL FIPS certified cryptography mode.
|
259
|
+
|
260
|
+
Credit:
|
261
|
+
Marc
|
262
|
+
|
263
|
+
- [Laurent Stacul brought this change]
|
264
|
+
|
265
|
+
openssl.c: Fix EVP_Cipher interface change in openssl 3 #463
|
266
|
+
|
267
|
+
File:
|
268
|
+
openssl.c
|
269
|
+
|
270
|
+
Notes:
|
271
|
+
Fixes building with OpenSSL 3, #463.
|
272
|
+
|
273
|
+
The change is described there:
|
274
|
+
https://github.com/openssl/openssl/commit/f7397f0d58ce7ddf4c5366cd1846f16b341fbe43
|
275
|
+
|
276
|
+
Credit:
|
277
|
+
Laurent Stacul, reported by Sergei
|
278
|
+
|
279
|
+
- [Gabriel Smith brought this change]
|
280
|
+
|
281
|
+
openssh_fixture.c: Fix potential overwrite of buffer when reading stdout of command (#580)
|
282
|
+
|
283
|
+
File:
|
284
|
+
openssh_fixture.c
|
285
|
+
Notes:
|
286
|
+
If reading the full output from the executed command took multiple
|
287
|
+
passes (such as when reading multiple lines) the old code would read
|
288
|
+
into the buffer starting at the some position (the start) every time.
|
289
|
+
The old code only works if fgets updated p or had an offset parameter,
|
290
|
+
both of which are not true.
|
291
|
+
|
292
|
+
Credit:
|
293
|
+
Gabriel Smith
|
294
|
+
|
295
|
+
- [Gabriel Smith brought this change]
|
296
|
+
|
297
|
+
ci: explicitly state the default branch (#585)
|
298
|
+
|
299
|
+
Notes:
|
300
|
+
It looks like the $default-branch macro only works in templates, not
|
301
|
+
workflows. This is not explicitly stated anywhere except the linked PR
|
302
|
+
comment.
|
303
|
+
|
304
|
+
https://github.com/actions/starter-workflows/pull/590#issuecomment-672360634
|
305
|
+
|
306
|
+
credit:
|
307
|
+
Gabriel Smith
|
308
|
+
|
309
|
+
- [Gabriel Smith brought this change]
|
310
|
+
|
311
|
+
ci: Swap from Travis to Github Actions (#581)
|
312
|
+
|
313
|
+
Files: ci files
|
314
|
+
|
315
|
+
Notes:
|
316
|
+
Move Linux CI using Github Actions
|
317
|
+
|
318
|
+
Credit:
|
319
|
+
Gabriel Smith, Marc Hörsken
|
320
|
+
|
321
|
+
- [Mary brought this change]
|
322
|
+
|
323
|
+
libssh2_priv.h: add iovec on 3ds (#575)
|
324
|
+
|
325
|
+
file: libssh2_priv.h
|
326
|
+
note: include iovec for 3DS
|
327
|
+
credit: Mary Mstrodl
|
328
|
+
|
329
|
+
- [Laurent Stacul brought this change]
|
330
|
+
|
331
|
+
Tests: Fix unused variables warning (#561)
|
332
|
+
|
333
|
+
file: test_public_key_auth_succeeds_with_correct_ed25519_key_from_mem.c
|
334
|
+
|
335
|
+
notes: fixed unused vars
|
336
|
+
|
337
|
+
credit:
|
338
|
+
Laurent Stacul
|
339
|
+
|
340
|
+
- [Viktor Szakats brought this change]
|
341
|
+
|
342
|
+
bcrypt_pbkdf.c: fix clang10 false positive warning (#563)
|
343
|
+
|
344
|
+
File: bcrypt_pbkdf.c
|
345
|
+
|
346
|
+
Notes:
|
347
|
+
blf_enc() takes a number of 64-bit blocks to encrypt, but using
|
348
|
+
sizeof(uint64_t) in the calculation triggers a warning with
|
349
|
+
clang 10 because the actual data type is uint32_t. Pass
|
350
|
+
BCRYPT_BLOCKS / 2 for the number of blocks like libc bcrypt(3)
|
351
|
+
does.
|
352
|
+
|
353
|
+
Ref: https://github.com/openbsd/src/commit/04a2240bd8f465bcae6b595d912af3e2965856de
|
354
|
+
|
355
|
+
Fixes #562
|
356
|
+
|
357
|
+
Credit:
|
358
|
+
Viktor Szakats
|
359
|
+
|
360
|
+
- [Will Cosgrove brought this change]
|
361
|
+
|
362
|
+
transport.c: release payload on error (#554)
|
363
|
+
|
364
|
+
file: transport.c
|
365
|
+
notes: If the payload is invalid and there is an early return, we could leak the payload
|
366
|
+
credit:
|
367
|
+
Will Cosgrove
|
368
|
+
|
369
|
+
- [Will Cosgrove brought this change]
|
370
|
+
|
371
|
+
ssh2_client_fuzzer.cc: fixed building
|
372
|
+
|
373
|
+
The GitHub web editor did some funky things
|
374
|
+
|
375
|
+
- [Will Cosgrove brought this change]
|
376
|
+
|
377
|
+
ssh_client_fuzzer.cc: set blocking mode on (#553)
|
378
|
+
|
379
|
+
file: ssh_client_fuzzer.cc
|
380
|
+
|
381
|
+
notes: the session needs blocking mode turned on to avoid EAGAIN being returned from libssh2_session_handshake()
|
382
|
+
|
383
|
+
credit:
|
384
|
+
Will Cosgrove, reviewed by Michael Buckley
|
385
|
+
|
386
|
+
- [Etienne Samson brought this change]
|
387
|
+
|
388
|
+
Add a LINT option to CMake (#372)
|
389
|
+
|
390
|
+
* ci: make style-checking available locally
|
391
|
+
|
392
|
+
* cmake: add a linting target
|
393
|
+
|
394
|
+
* tests: check test suite syntax with checksrc.pl
|
395
|
+
|
396
|
+
- [Will Cosgrove brought this change]
|
397
|
+
|
398
|
+
kex.c: kex_agree_instr() improve string reading (#552)
|
399
|
+
|
400
|
+
* kex.c: kex_agree_instr() improve string reading
|
401
|
+
|
402
|
+
file: kex.c
|
403
|
+
notes: if haystack isn't null terminated we should use memchr() not strchar(). We should also make sure we don't walk off the end of the buffer.
|
404
|
+
credit:
|
405
|
+
Will Cosgrove, reviewed by Michael Buckley
|
406
|
+
|
407
|
+
- [Will Cosgrove brought this change]
|
408
|
+
|
409
|
+
kex.c: use string_buf in ecdh_sha2_nistp (#551)
|
410
|
+
|
411
|
+
* kex.c: use string_buf in ecdh_sha2_nistp
|
412
|
+
|
413
|
+
file: kex.c
|
414
|
+
|
415
|
+
notes:
|
416
|
+
use string_buf in ecdh_sha2_nistp() to avoid attempting to parse malformed data
|
417
|
+
|
418
|
+
- [Will Cosgrove brought this change]
|
419
|
+
|
420
|
+
kex.c: move EC macro outside of if check #549 (#550)
|
421
|
+
|
422
|
+
File: kex.c
|
423
|
+
|
424
|
+
Notes:
|
425
|
+
Moved the macro LIBSSH2_KEX_METHOD_EC_SHA_HASH_CREATE_VERIFY outside of the LIBSSH2_ECDSA since it's also now used by the ED25519 code.
|
426
|
+
|
427
|
+
Sha 256, 384 and 512 need to be defined for all backends now even if they aren't used directly. I believe this is already the case, but just a heads up.
|
428
|
+
|
429
|
+
Credit:
|
430
|
+
Stefan-Ghinea
|
431
|
+
|
432
|
+
- [Tim Gates brought this change]
|
433
|
+
|
434
|
+
kex.c: fix simple typo, niumber -> number (#545)
|
435
|
+
|
436
|
+
File: kex.c
|
437
|
+
|
438
|
+
Notes:
|
439
|
+
There is a small typo in src/kex.c.
|
440
|
+
|
441
|
+
Should read `number` rather than `niumber`.
|
442
|
+
|
443
|
+
Credit:
|
444
|
+
Tim Gates
|
445
|
+
|
446
|
+
- [Tseng Jun brought this change]
|
447
|
+
|
448
|
+
session.c: Correct a typo which may lead to stack overflow (#533)
|
449
|
+
|
450
|
+
File: session.c
|
451
|
+
|
452
|
+
Notes:
|
453
|
+
Seems the author intend to terminate banner_dup buffer, later, print it to the debug console.
|
454
|
+
|
455
|
+
Author:
|
456
|
+
Tseng Jun
|
457
|
+
|
458
|
+
Marc Hoersken (10 Oct 2020)
|
459
|
+
- wincng: fix random big number generation to match openssl
|
460
|
+
|
461
|
+
The old function would set the least significant bits in
|
462
|
+
the most significant byte instead of the most significant bits.
|
463
|
+
|
464
|
+
The old function would also zero pad too much bits in the
|
465
|
+
most significant byte. This lead to a reduction of key space
|
466
|
+
in the most significant byte according to the following listing:
|
467
|
+
- 8 bits reduced to 0 bits => eg. 2048 bits to 2040 bits DH key
|
468
|
+
- 7 bits reduced to 1 bits => eg. 2047 bits to 2041 bits DH key
|
469
|
+
- 6 bits reduced to 2 bits => eg. 2046 bits to 2042 bits DH key
|
470
|
+
- 5 bits reduced to 3 bits => eg. 2045 bits to 2043 bits DH key
|
471
|
+
|
472
|
+
No change would occur for the case of 4 significant bits.
|
473
|
+
For 1 to 3 significant bits in the most significant byte
|
474
|
+
the DH key would actually be expanded instead of reduced:
|
475
|
+
- 3 bits expanded to 5 bits => eg. 2043 bits to 2045 bits DH key
|
476
|
+
- 2 bits expanded to 6 bits => eg. 2042 bits to 2046 bits DH key
|
477
|
+
- 1 bits expanded to 7 bits => eg. 2041 bits to 2047 bits DH key
|
478
|
+
|
479
|
+
There is no case of 0 significant bits in the most significant byte
|
480
|
+
since this would be a case of 8 significant bits in the next byte.
|
481
|
+
|
482
|
+
At the moment only the following case applies due to a fixed
|
483
|
+
DH key size value currently being used in libssh2:
|
484
|
+
|
485
|
+
The DH group_order is fixed to 256 (bytes) which leads to a
|
486
|
+
2047 bits DH key size by calculating (256 * 8) - 1.
|
487
|
+
|
488
|
+
This means the DH keyspace was previously reduced from 2047 bits
|
489
|
+
to 2041 bits (while the top and bottom bits are always set), so the
|
490
|
+
keyspace is actually always reduced from 2045 bits to 2039 bits.
|
491
|
+
|
492
|
+
All of this is only relevant for Windows versions supporting the
|
493
|
+
WinCNG backend (Vista or newer) before Windows 10 version 1903.
|
494
|
+
|
495
|
+
Closes #521
|
496
|
+
|
497
|
+
Daniel Stenberg (28 Sep 2020)
|
498
|
+
- libssh2_session_callback_set.3: explain the recv/send callbacks
|
499
|
+
|
500
|
+
Describe how to actually use these callbacks.
|
501
|
+
|
502
|
+
Closes #518
|
503
|
+
|
504
|
+
GitHub (23 Sep 2020)
|
505
|
+
- [Will Cosgrove brought this change]
|
506
|
+
|
507
|
+
agent.c: formatting
|
508
|
+
|
509
|
+
Improved formatting of RECV_SEND_ALL macro.
|
510
|
+
|
511
|
+
- [Will Cosgrove brought this change]
|
512
|
+
|
513
|
+
CMakeLists.txt: respect install lib dir #405 (#515)
|
514
|
+
|
515
|
+
Files:
|
516
|
+
CMakeLists.txt
|
517
|
+
|
518
|
+
Notes:
|
519
|
+
Use CMAKE_INSTALL_LIBDIR directory
|
520
|
+
|
521
|
+
Credit: Arfrever
|
522
|
+
|
523
|
+
- [Will Cosgrove brought this change]
|
524
|
+
|
525
|
+
kex.c: group16-sha512 and group18-sha512 support #457 (#468)
|
526
|
+
|
527
|
+
Files: kex.c
|
528
|
+
|
529
|
+
Notes:
|
530
|
+
Added key exchange group16-sha512 and group18-sha512. As a result did the following:
|
531
|
+
|
532
|
+
Abstracted diffie_hellman_sha256() to diffie_hellman_sha_algo() which is now algorithm agnostic and takes the algorithm as a parameter since we needed sha512 support. Unfortunately it required some helper functions but they are simple.
|
533
|
+
Deleted diffie_hellman_sha1()
|
534
|
+
Deleted diffie_hellman_sha1 specific macro
|
535
|
+
Cleaned up some formatting
|
536
|
+
Defined sha384 in os400 and wincng backends
|
537
|
+
Defined LIBSSH2_DH_MAX_MODULUS_BITS to abort the connection if we receive too large of p from the server doing sha1 key exchange.
|
538
|
+
Reorder the default key exchange list to match OpenSSH and improve security
|
539
|
+
|
540
|
+
Credit:
|
541
|
+
Will Cosgrove
|
542
|
+
|
543
|
+
- [Igor Klevanets brought this change]
|
544
|
+
|
545
|
+
agent.c: Recv and send all bytes via network in agent_transact_unix() (#510)
|
546
|
+
|
547
|
+
Files: agent.c
|
548
|
+
|
549
|
+
Notes:
|
550
|
+
Handle sending/receiving partial packet replies in agent.c API.
|
551
|
+
|
552
|
+
Credit: Klevanets Igor <cerevra@yandex-team.ru>
|
553
|
+
|
554
|
+
- [Daniel Stenberg brought this change]
|
555
|
+
|
556
|
+
Makefile.am: include all test files in the dist #379
|
557
|
+
|
558
|
+
File:
|
559
|
+
Makefile.am
|
560
|
+
|
561
|
+
Notes:
|
562
|
+
No longer conditionally include OpenSSL specific test files, they aren't run if we're not building against OpenSSL 1.1.x anyway.
|
563
|
+
|
564
|
+
Credit:
|
565
|
+
Daniel Stenberg
|
566
|
+
|
567
|
+
- [Max Dymond brought this change]
|
568
|
+
|
569
|
+
Add support for an OSS Fuzzer fuzzing target (#392)
|
570
|
+
|
571
|
+
Files:
|
572
|
+
.travis.yml, configure.ac, ossfuzz
|
573
|
+
|
574
|
+
Notes:
|
575
|
+
This adds support for an OSS-Fuzz fuzzing target in ssh2_client_fuzzer,
|
576
|
+
which is a cut down example of ssh2.c. Future enhancements can improve
|
577
|
+
coverage.
|
578
|
+
|
579
|
+
Credit:
|
580
|
+
Max Dymond
|
581
|
+
|
582
|
+
- [Sebastián Katzer brought this change]
|
583
|
+
|
584
|
+
mbedtls.c: ECDSA support for mbed TLS (#385)
|
585
|
+
|
586
|
+
Files:
|
587
|
+
mbedtls.c, mbedtls.h, .travis.yml
|
588
|
+
|
589
|
+
Notes:
|
590
|
+
This PR adds support for ECDSA for both key exchange and host key algorithms.
|
591
|
+
|
592
|
+
The following elliptic curves are supported:
|
593
|
+
|
594
|
+
256-bit curve defined by FIPS 186-4 and SEC1
|
595
|
+
384-bit curve defined by FIPS 186-4 and SEC1
|
596
|
+
521-bit curve defined by FIPS 186-4 and SEC1
|
597
|
+
|
598
|
+
Credit:
|
599
|
+
Sebastián Katzer
|
600
|
+
|
601
|
+
Marc Hoersken (1 Sep 2020)
|
602
|
+
- buildconf: exec autoreconf to avoid additional process (#512)
|
603
|
+
|
604
|
+
Also make buildconf exit with the return code of autoreconf.
|
605
|
+
|
606
|
+
Follow up to #224
|
607
|
+
|
608
|
+
- scp.c: fix indentation in shell_quotearg documentation
|
609
|
+
|
610
|
+
- wincng: make more use of new helper functions (#496)
|
611
|
+
|
612
|
+
- wincng: make sure algorithm providers are closed once (#496)
|
613
|
+
|
614
|
+
GitHub (10 Jul 2020)
|
615
|
+
- [David Benjamin brought this change]
|
616
|
+
|
617
|
+
openssl.c: clean up curve25519 code (#499)
|
618
|
+
|
619
|
+
File: openssl.c, openssl.h, crypto.h, kex.c
|
620
|
+
|
621
|
+
Notes:
|
622
|
+
This cleans up a few things in the curve25519 implementation:
|
623
|
+
|
624
|
+
- There is no need to create X509_PUBKEYs or PKCS8_PRIV_KEY_INFOs to
|
625
|
+
extract key material. EVP_PKEY_get_raw_private_key and
|
626
|
+
EVP_PKEY_get_raw_public_key work fine.
|
627
|
+
|
628
|
+
- libssh2_x25519_ctx was never used (and occasionally mis-typedefed to
|
629
|
+
libssh2_ed25519_ctx). Remove it. The _libssh2_curve25519_new and
|
630
|
+
_libssh2_curve25519_gen_k interfaces use the bytes. Note, if it needs
|
631
|
+
to be added back, there is no need to roundtrip through
|
632
|
+
EVP_PKEY_new_raw_private_key. EVP_PKEY_keygen already generated an
|
633
|
+
EVP_PKEY.
|
634
|
+
|
635
|
+
- Add some missing error checks.
|
636
|
+
|
637
|
+
Credit:
|
638
|
+
David Benjamin
|
639
|
+
|
640
|
+
- [Will Cosgrove brought this change]
|
641
|
+
|
642
|
+
transport.c: socket is disconnected, return error (#500)
|
643
|
+
|
644
|
+
File: transport.c
|
645
|
+
|
646
|
+
Notes:
|
647
|
+
This is to fix #102, instead of continuing to attempt to read a disconnected socket, it will now error out.
|
648
|
+
|
649
|
+
Credit:
|
650
|
+
TDi-jonesds
|
651
|
+
|
652
|
+
- [Will Cosgrove brought this change]
|
653
|
+
|
654
|
+
stale.yml
|
655
|
+
|
656
|
+
Increasing stale values.
|
657
|
+
|
658
|
+
Marc Hoersken (6 Jul 2020)
|
659
|
+
- wincng: try newer DH API first, fallback to legacy RSA API
|
660
|
+
|
661
|
+
Avoid the use of RtlGetVersion or similar Win32 functions,
|
662
|
+
since these depend on version information from manifests.
|
663
|
+
|
664
|
+
This commit makes the WinCNG backend first try to use the
|
665
|
+
new DH algorithm API with the raw secret derivation feature.
|
666
|
+
In case this feature is not available the WinCNG backend
|
667
|
+
will fallback to the classic approach of using RSA-encrypt
|
668
|
+
to perform the required modular exponentiation of BigNums.
|
669
|
+
|
670
|
+
The feature availability test is done during the first handshake
|
671
|
+
and the result is stored in the crypto backends global state.
|
672
|
+
|
673
|
+
Follow up to #397
|
674
|
+
Closes #484
|
675
|
+
|
676
|
+
- wincng: fix indentation of function arguments and comments
|
677
|
+
|
678
|
+
Follow up to #397
|
679
|
+
|
680
|
+
- [Wez Furlong brought this change]
|
681
|
+
|
682
|
+
wincng: use newer DH API for Windows 8.1+
|
683
|
+
|
684
|
+
Since Windows 1903 the approach used to perform DH kex with the CNG
|
685
|
+
API has been failing.
|
686
|
+
|
687
|
+
This commit switches to using the `DH` algorithm provider to perform
|
688
|
+
generation of the key pair and derivation of the shared secret.
|
689
|
+
|
690
|
+
It uses a feature of CNG that is not yet documented. The sources of
|
691
|
+
information that I've found on this are:
|
692
|
+
|
693
|
+
* https://stackoverflow.com/a/56378698/149111
|
694
|
+
* https://github.com/wbenny/mini-tor/blob/5d39011e632be8e2b6b1819ee7295e8bd9b7a769/mini/crypto/cng/dh.inl#L355
|
695
|
+
|
696
|
+
With this change I am able to successfully connect from Windows 10 to my
|
697
|
+
ubuntu system.
|
698
|
+
|
699
|
+
Refs: https://github.com/alexcrichton/ssh2-rs/issues/122
|
700
|
+
Fixes: https://github.com/libssh2/libssh2/issues/388
|
701
|
+
Closes: https://github.com/libssh2/libssh2/pull/397
|
702
|
+
|
703
|
+
GitHub (1 Jul 2020)
|
704
|
+
- [Zenju brought this change]
|
705
|
+
|
706
|
+
comp.c: Fix name clash with ZLIB macro "compress" (#418)
|
707
|
+
|
708
|
+
File: comp.c
|
709
|
+
|
710
|
+
Notes:
|
711
|
+
* Fix name clash with ZLIB macro "compress".
|
712
|
+
|
713
|
+
Credit:
|
714
|
+
Zenju
|
715
|
+
|
716
|
+
- [yann-morin-1998 brought this change]
|
717
|
+
|
718
|
+
buildsystem: drop custom buildconf script, rely on autoreconf (#224)
|
719
|
+
|
720
|
+
Notes:
|
721
|
+
The buildconf script is currently required, because we need to copy a
|
722
|
+
header around, because it is used both from the library and the examples
|
723
|
+
sources.
|
724
|
+
|
725
|
+
However, having a custom 'buildconf'-like script is not needed if we can
|
726
|
+
ensure that the header exists by the time it is needed. For that, we can
|
727
|
+
just append the src/ directory to the headers search path for the
|
728
|
+
examples.
|
729
|
+
|
730
|
+
And then it means we no longer need to generate the same header twice,
|
731
|
+
so we remove the second one from configure.ac.
|
732
|
+
|
733
|
+
Now, we can just call "autoreconf -fi" to generate the autotools files,
|
734
|
+
instead of relying on the canned sequence in "buildconf", since
|
735
|
+
autoreconf has now long known what to do at the correct moment (future
|
736
|
+
versions of autotools, automake, autopoint, autoheader etc... may
|
737
|
+
require an other ordering, or other intermediate steps, etc...).
|
738
|
+
|
739
|
+
Eventually, get rid of buildconf now it is no longer needed. In fact, we
|
740
|
+
really keep it for legacy, but have it just call autoreconf (and print a
|
741
|
+
nice user-friendly warning). Don't include it in the release tarballs,
|
742
|
+
though.
|
743
|
+
|
744
|
+
Update doc, gitignore, and travis-CI jobs accordingly.
|
745
|
+
|
746
|
+
Credit:
|
747
|
+
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
748
|
+
Cc: Sam Voss <sam.voss@rockwellcollins.com>
|
749
|
+
|
750
|
+
- [Will Cosgrove brought this change]
|
751
|
+
|
752
|
+
libssh2.h: Update Diffie Hellman group values (#493)
|
753
|
+
|
754
|
+
File: libssh2.h
|
755
|
+
|
756
|
+
Notes:
|
757
|
+
Update the min, preferred and max DH group values based on RFC 8270.
|
758
|
+
|
759
|
+
Credit:
|
760
|
+
Will Cosgrove, noted from email list by Mitchell Holland
|
761
|
+
|
762
|
+
Marc Hoersken (22 Jun 2020)
|
763
|
+
- travis: use existing Makefile target to run checksrc
|
764
|
+
|
765
|
+
- Makefile: also run checksrc on test source files
|
766
|
+
|
767
|
+
- tests: avoid use of deprecated function _sleep (#490)
|
768
|
+
|
769
|
+
- tests: avoid use of banned function strncat (#489)
|
770
|
+
|
771
|
+
- tests: satisfy checksrc regarding max line length of 79 chars
|
772
|
+
|
773
|
+
Follow up to 2764bc8e06d51876b6796d6080c6ac51e20f3332
|
774
|
+
|
775
|
+
- tests: satisfy checksrc with whitespace only fixes
|
776
|
+
|
777
|
+
checksrc.pl -i4 -m79 -ASIZEOFNOPAREN -ASNPRINTF
|
778
|
+
-ACOPYRIGHT -AFOPENMODE tests/*.[ch]
|
779
|
+
|
780
|
+
- tests: add support for ports published via Docker for Windows
|
781
|
+
|
782
|
+
- tests: restore retry behaviour for docker-machine ip command
|
783
|
+
|
784
|
+
- tests: fix mix of declarations and code failing C89 compliance
|
785
|
+
|
786
|
+
- wincng: add and improve checks in bit counting function
|
787
|
+
|
788
|
+
- wincng: align bits to bytes calculation in all functions
|
789
|
+
|
790
|
+
- wincng: do not disable key validation that can be enabled
|
791
|
+
|
792
|
+
The modular exponentiation also works with key validation enabled.
|
793
|
+
|
794
|
+
- wincng: fix return value in _libssh2_dh_secret
|
795
|
+
|
796
|
+
Do not ignore return value of modular exponentiation.
|
797
|
+
|
798
|
+
- appveyor: build and run tests for WinCNG crypto backend
|
799
|
+
|
800
|
+
GitHub (1 Jun 2020)
|
801
|
+
- [suryakalpo brought this change]
|
802
|
+
|
803
|
+
INSTALL_CMAKE.md: Update formatting (#481)
|
804
|
+
|
805
|
+
File: INSTALL_CMAKE.md
|
806
|
+
|
807
|
+
Notes:
|
808
|
+
Although the original text would be immediately clear to seasoned users of CMAKE and/or Unix shell, the lack of newlines may cause some confusion for newcomers. Hence, wrapping the texts in a md code-block such that the newlines appear as intended.
|
809
|
+
|
810
|
+
credit:
|
811
|
+
suryakalpo
|
812
|
+
|
813
|
+
Marc Hoersken (31 May 2020)
|
814
|
+
- src: add new and align include guards in header files (#480)
|
815
|
+
|
816
|
+
Make sure all include guards exist and follow the same format.
|
817
|
+
|
818
|
+
- wincng: fix multiple definition of `_libssh2_wincng' (#479)
|
819
|
+
|
820
|
+
Add missing include guard and move global state
|
821
|
+
from header to source file by using extern.
|
822
|
+
|
823
|
+
GitHub (28 May 2020)
|
824
|
+
- [Will Cosgrove brought this change]
|
825
|
+
|
826
|
+
transport.c: moving total_num check from #476 (#478)
|
827
|
+
|
828
|
+
file: transport.c
|
829
|
+
|
830
|
+
notes:
|
831
|
+
moving total_num zero length check from #476 up to the prior bounds check which already includes a total_num check. Makes it slightly more readable.
|
832
|
+
|
833
|
+
credit:
|
834
|
+
Will Cosgrove
|
835
|
+
|
836
|
+
- [lutianxiong brought this change]
|
837
|
+
|
838
|
+
transport.c: fix use-of-uninitialized-value (#476)
|
839
|
+
|
840
|
+
file:transport.c
|
841
|
+
|
842
|
+
notes:
|
843
|
+
return error if malloc(0)
|
844
|
+
|
845
|
+
credit:
|
846
|
+
lutianxiong
|
847
|
+
|
848
|
+
- [Dr. Koutheir Attouchi brought this change]
|
849
|
+
|
850
|
+
libssh2_sftp.h: Changed type of LIBSSH2_FX_* constants to unsigned long, fixes #474
|
851
|
+
|
852
|
+
File:
|
853
|
+
libssh2_sftp.h
|
854
|
+
|
855
|
+
Notes:
|
856
|
+
Error constants `LIBSSH2_FX_*` are only returned by `libssh2_sftp_last_error()` which returns `unsigned long`.
|
857
|
+
Therefore these constants should be defined as unsigned long literals, instead of int literals.
|
858
|
+
|
859
|
+
Credit:
|
860
|
+
Dr. Koutheir Attouchi
|
861
|
+
|
862
|
+
- [monnerat brought this change]
|
863
|
+
|
864
|
+
os400qc3.c: constify libssh2_os400qc3_hash_update() data parameter. (#469)
|
865
|
+
|
866
|
+
Files: os400qc3.c, os400qc3.h
|
867
|
+
|
868
|
+
Notes:
|
869
|
+
Fixes building on OS400. #426
|
870
|
+
|
871
|
+
Credit:
|
872
|
+
Reported-by: hjindra on github, dev by Monnerat
|
873
|
+
|
874
|
+
- [monnerat brought this change]
|
875
|
+
|
876
|
+
HACKING.CRYPTO: keep up to date with new crypto definitions from code. (#466)
|
877
|
+
|
878
|
+
File: HACKING.CRYPTO
|
879
|
+
|
880
|
+
Notes:
|
881
|
+
This commit updates the HACKING.CRYPTO documentation file in an attempt to make it in sync with current code.
|
882
|
+
New documented features are:
|
883
|
+
|
884
|
+
SHA384
|
885
|
+
SHA512
|
886
|
+
ECDSA
|
887
|
+
ED25519
|
888
|
+
|
889
|
+
Credit:
|
890
|
+
monnerat
|
891
|
+
|
892
|
+
- [Harry Sintonen brought this change]
|
893
|
+
|
894
|
+
kex.c: Add diffie-hellman-group14-sha256 Key Exchange Method (#464)
|
895
|
+
|
896
|
+
File: kex.c
|
897
|
+
|
898
|
+
Notes: Added diffie-hellman-group14-sha256 kex
|
899
|
+
|
900
|
+
Credit: Harry Sintonen <sintonen@iki.fi>
|
901
|
+
|
902
|
+
- [Will Cosgrove brought this change]
|
903
|
+
|
904
|
+
os400qc3.h: define sha512 macros (#465)
|
905
|
+
|
906
|
+
file: os400qc3.h
|
907
|
+
notes: fixes for building libssh2 1.9.x
|
908
|
+
|
909
|
+
- [Will Cosgrove brought this change]
|
910
|
+
|
911
|
+
os400qc3.h: define EC types to fix building #426 (#462)
|
912
|
+
|
913
|
+
File: os400qc3.h
|
914
|
+
Notes: define missing EC types which prevents building
|
915
|
+
Credit: hjindra
|
916
|
+
|
917
|
+
- [Brendan Shanks brought this change]
|
918
|
+
|
919
|
+
hostkey.c: Fix 'unsigned int'/'uint32_t' mismatch (#461)
|
920
|
+
|
921
|
+
File: hostkey.c
|
922
|
+
|
923
|
+
Notes:
|
924
|
+
These types are the same size so most compilers are fine with it, but CodeWarrior (on classic MacOS) throws an ‘illegal implicit conversion’ error
|
925
|
+
|
926
|
+
Credit: Brendan Shanks
|
927
|
+
|
928
|
+
- [Thomas Klausner brought this change]
|
929
|
+
|
930
|
+
Makefile.am: Fix unportable test(1) operator. (#459)
|
931
|
+
|
932
|
+
file: Makefile.am
|
933
|
+
|
934
|
+
Notes:
|
935
|
+
The POSIX comparison operator for test(1) is =; bash supports == but not even test from GNU coreutils does.
|
936
|
+
|
937
|
+
Credit:
|
938
|
+
Thomas Klausner
|
939
|
+
|
940
|
+
- [Tseng Jun brought this change]
|
941
|
+
|
942
|
+
openssl.c: minor changes of coding style (#454)
|
943
|
+
|
944
|
+
File: openssl.c
|
945
|
+
|
946
|
+
Notes:
|
947
|
+
minor changes of coding style and align preprocessor conditional for #439
|
948
|
+
|
949
|
+
Credit:
|
950
|
+
Tseng Jun
|
951
|
+
|
952
|
+
- [Hans Meier brought this change]
|
953
|
+
|
954
|
+
openssl.c: Fix for use of uninitialized aes_ctr_cipher.key_len (#453)
|
955
|
+
|
956
|
+
File:
|
957
|
+
Openssl.c
|
958
|
+
|
959
|
+
Notes:
|
960
|
+
* Fix for use of uninitialized aes_ctr_cipher.key_len when using HAVE_OPAQUE_STRUCTS, regression from #439
|
961
|
+
|
962
|
+
Credit:
|
963
|
+
Hans Meirer, Tseng Jun
|
964
|
+
|
965
|
+
- [Zenju brought this change]
|
966
|
+
|
967
|
+
agent.c: Fix Unicode builds on Windows (#417)
|
968
|
+
|
969
|
+
File: agent.c
|
970
|
+
|
971
|
+
Notes:
|
972
|
+
Fixes unicode builds for Windows in Visual Studio 16.3.2.
|
973
|
+
|
974
|
+
Credit:
|
975
|
+
Zenju
|
976
|
+
|
977
|
+
- [Hans Meier brought this change]
|
978
|
+
|
979
|
+
openssl.c: Fix use-after-free crash in openssl backend without memory leak (#439)
|
980
|
+
|
981
|
+
Files: openssl.c
|
982
|
+
|
983
|
+
Notes:
|
984
|
+
Fixes memory leaks and use after free AES EVP_CIPHER contexts when using OpenSSL 1.0.x.
|
985
|
+
|
986
|
+
Credit:
|
987
|
+
Hans Meier
|
988
|
+
|
989
|
+
- [Romain Geissler @ Amadeus brought this change]
|
990
|
+
|
991
|
+
Session.c: Fix undefined warning when mixing with LTO-enabled libcurl. (#449)
|
992
|
+
|
993
|
+
File: Session.c
|
994
|
+
|
995
|
+
Notes:
|
996
|
+
With gcc 9, libssh2, libcurl and LTO enabled for all binaries I see this
|
997
|
+
warning (error with -Werror):
|
998
|
+
|
999
|
+
vssh/libssh2.c: In function ‘ssh_statemach_act’:
|
1000
|
+
/data/mwrep/rgeissler/ospack/ssh2/BUILD/libssh2-libssh2-03c7c4a/src/session.c:579:9: error: ‘seconds_to_next’ is used uninitialized in this function [-Werror=uninitialized]
|
1001
|
+
579 | int seconds_to_next;
|
1002
|
+
| ^
|
1003
|
+
lto1: all warnings being treated as errors
|
1004
|
+
|
1005
|
+
Gcc normally issues -Wuninitialized when it is sure there is a problem,
|
1006
|
+
and -Wmaybe-uninitialized when it's not sure, but it's possible. Here
|
1007
|
+
the compiler seems to have find a real case where this could happen. I
|
1008
|
+
looked in your code and overall it seems you always check if the return
|
1009
|
+
code is non null, not often that it's below zero. I think we should do
|
1010
|
+
the same here. With this patch, gcc is fine.
|
1011
|
+
|
1012
|
+
Credit:
|
1013
|
+
Romain-Geissler-1A
|
1014
|
+
|
1015
|
+
- [Zenju brought this change]
|
1016
|
+
|
1017
|
+
transport.c: Fix crash with delayed compression (#443)
|
1018
|
+
|
1019
|
+
Files: transport.c
|
1020
|
+
|
1021
|
+
Notes:
|
1022
|
+
Fixes crash with delayed compression option using Bitvise server.
|
1023
|
+
|
1024
|
+
Contributor:
|
1025
|
+
Zenju
|
1026
|
+
|
1027
|
+
- [Will Cosgrove brought this change]
|
1028
|
+
|
1029
|
+
Update INSTALL_MAKE path to INSTALL_MAKE.md (#446)
|
1030
|
+
|
1031
|
+
Included for #429
|
1032
|
+
|
1033
|
+
- [Will Cosgrove brought this change]
|
1034
|
+
|
1035
|
+
Update INSTALL_CMAKE filename to INSTALL_CMAKE.md (#445)
|
1036
|
+
|
1037
|
+
Fixing for #429
|
1038
|
+
|
1039
|
+
- [Wallace Souza brought this change]
|
1040
|
+
|
1041
|
+
Rename INSTALL_CMAKE to INTALL_CMAKE.md (#429)
|
1042
|
+
|
1043
|
+
Adding Markdown file extension in order to Github render the instructions properly
|
1044
|
+
|
1045
|
+
Will Cosgrove (17 Dec 2019)
|
1046
|
+
- [Daniel Stenberg brought this change]
|
1047
|
+
|
1048
|
+
include/libssh2.h: fix comment: the known host key uses 4 bits (#438)
|
1049
|
+
|
1050
|
+
- [Zenju brought this change]
|
1051
|
+
|
1052
|
+
ssh-ed25519: Support PKIX + calc pubkey from private (#416)
|
1053
|
+
|
1054
|
+
Files: openssl.c/h
|
1055
|
+
Author: Zenju
|
1056
|
+
Notes:
|
1057
|
+
Adds support for PKIX key reading by fixing:
|
1058
|
+
|
1059
|
+
_libssh2_pub_priv_keyfile() is missing the code to extract the ed25519 public key from a given private key
|
1060
|
+
|
1061
|
+
_libssh2_ed25519_new_private_frommemory is only parsing the openssh key format but does not understand PKIX (as retrieved via PEM_read_bio_PrivateKey)
|
1062
|
+
|
1063
|
+
GitHub (15 Oct 2019)
|
1064
|
+
- [Will Cosgrove brought this change]
|
1065
|
+
|
1066
|
+
.travis.yml: Fix Chrome and 32 bit builds (#423)
|
1067
|
+
|
1068
|
+
File: .travis.yml
|
1069
|
+
|
1070
|
+
Notes:
|
1071
|
+
* Fix Chrome installing by using Travis build in directive
|
1072
|
+
* Update to use libgcrypt20-dev package to fix 32 bit builds based on comments found here:
|
1073
|
+
https://launchpad.net/ubuntu/xenial/i386/libgcrypt11-dev
|
1074
|
+
|
1075
|
+
- [Will Cosgrove brought this change]
|
1076
|
+
|
1077
|
+
packet.c: improved parsing in packet_x11_open (#410)
|
1078
|
+
|
1079
|
+
Use new API to parse data in packet_x11_open() for better bounds checking.
|
1080
|
+
|
1081
|
+
Will Cosgrove (12 Sep 2019)
|
1082
|
+
- [Michael Buckley brought this change]
|
1083
|
+
|
1084
|
+
knownhost.c: Double the static buffer size when reading and writing known hosts (#409)
|
1085
|
+
|
1086
|
+
Notes:
|
1087
|
+
We had a user who was being repeatedly prompted to accept a server key repeatedly. It turns out the base64-encoded key was larger than the static buffers allocated to read and write known hosts. I doubled the size of these buffers.
|
1088
|
+
|
1089
|
+
Credit:
|
1090
|
+
Michael Buckley
|
1091
|
+
|
1092
|
+
GitHub (4 Sep 2019)
|
1093
|
+
- [Will Cosgrove brought this change]
|
1094
|
+
|
1095
|
+
packet.c: improved packet parsing in packet_queue_listener (#404)
|
1096
|
+
|
1097
|
+
* improved bounds checking in packet_queue_listener
|
1098
|
+
|
1099
|
+
file: packet.c
|
1100
|
+
|
1101
|
+
notes:
|
1102
|
+
improved parsing packet in packet_queue_listener
|
1103
|
+
|
1104
|
+
- [Will Cosgrove brought this change]
|
1105
|
+
|
1106
|
+
packet.c: improve message parsing (#402)
|
1107
|
+
|
1108
|
+
* packet.c: improve parsing of packets
|
1109
|
+
|
1110
|
+
file: packet.c
|
1111
|
+
|
1112
|
+
notes:
|
1113
|
+
Use _libssh2_get_string API in SSH_MSG_DEBUG/SSH_MSG_DISCONNECT. Additional uint32 bounds check in SSH_MSG_GLOBAL_REQUEST.
|
1114
|
+
|
1115
|
+
- [Will Cosgrove brought this change]
|
1116
|
+
|
1117
|
+
misc.c: _libssh2_ntohu32 cast bit shifting (#401)
|
1118
|
+
|
1119
|
+
To quite overly aggressive analyzers.
|
1120
|
+
|
1121
|
+
Note, the builds pass, Travis is having some issues with Docker images.
|
1122
|
+
|
1123
|
+
- [Will Cosgrove brought this change]
|
1124
|
+
|
1125
|
+
kex.c: improve bounds checking in kex_agree_methods() (#399)
|
1126
|
+
|
1127
|
+
file: kex.c
|
1128
|
+
|
1129
|
+
notes:
|
1130
|
+
use _libssh2_get_string instead of kex_string_pair which does additional checks
|
1131
|
+
|
1132
|
+
Will Cosgrove (23 Aug 2019)
|
1133
|
+
- [Fabrice Fontaine brought this change]
|
1134
|
+
|
1135
|
+
acinclude.m4: add mbedtls to LIBS (#371)
|
1136
|
+
|
1137
|
+
Notes:
|
1138
|
+
This is useful for static builds so that the Libs.private field in
|
1139
|
+
libssh2.pc contains correct info for the benefit of pkg-config users.
|
1140
|
+
Static link with libssh2 requires this information.
|
1141
|
+
|
1142
|
+
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
1143
|
+
[Retrieved from:
|
1144
|
+
https://git.buildroot.net/buildroot/tree/package/libssh2/0002-acinclude.m4-add-mbedtls-to-LIBS.patch]
|
1145
|
+
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
1146
|
+
|
1147
|
+
Credit:
|
1148
|
+
Fabrice Fontaine
|
1149
|
+
|
1150
|
+
- [jethrogb brought this change]
|
1151
|
+
|
1152
|
+
Generate debug info when building with MSVC (#178)
|
1153
|
+
|
1154
|
+
files: CMakeLists.txt
|
1155
|
+
|
1156
|
+
notes: Generate debug info when building with MSVC
|
1157
|
+
|
1158
|
+
credit:
|
1159
|
+
jethrogb
|
1160
|
+
|
1161
|
+
- [Panos brought this change]
|
1162
|
+
|
1163
|
+
Add agent forwarding implementation (#219)
|
1164
|
+
|
1165
|
+
files: channel.c, test_agent_forward_succeeds.c, libssh2_priv.h, libssh2.h, ssh2_agent_forwarding.c
|
1166
|
+
|
1167
|
+
notes:
|
1168
|
+
* Adding SSH agent forwarding.
|
1169
|
+
* Fix agent forwarding message, updated example.
|
1170
|
+
Added integration test code and cmake target. Added example to cmake list.
|
1171
|
+
|
1172
|
+
credit:
|
1173
|
+
pkittenis
|
1174
|
+
|
1175
|
+
GitHub (2 Aug 2019)
|
1176
|
+
- [Will Cosgrove brought this change]
|
1177
|
+
|
1178
|
+
Update EditorConfig
|
1179
|
+
|
1180
|
+
Added max_line_length = 80
|
1181
|
+
|
1182
|
+
- [Will Cosgrove brought this change]
|
1183
|
+
|
1184
|
+
global.c : fixed call to libssh2_crypto_exit #394 (#396)
|
1185
|
+
|
1186
|
+
* global.c : fixed call to libssh2_crypto_exit #394
|
1187
|
+
|
1188
|
+
File: global.c
|
1189
|
+
|
1190
|
+
Notes: Don't call `libssh2_crypto_exit()` until `_libssh2_initialized` count is down to zero.
|
1191
|
+
|
1192
|
+
Credit: seba30
|
1193
|
+
|
1194
|
+
Will Cosgrove (30 Jul 2019)
|
1195
|
+
- [hlefebvre brought this change]
|
1196
|
+
|
1197
|
+
misc.c : Add an EWOULDBLOCK check for better portability (#172)
|
1198
|
+
|
1199
|
+
File: misc.c
|
1200
|
+
|
1201
|
+
Notes: Added support for all OS' that implement EWOULDBLOCK, not only VMS
|
1202
|
+
|
1203
|
+
Credit: hlefebvre
|
1204
|
+
|
1205
|
+
- [Etienne Samson brought this change]
|
1206
|
+
|
1207
|
+
userauth.c: fix off by one error when loading public keys with no id (#386)
|
1208
|
+
|
1209
|
+
File: userauth.c
|
1210
|
+
|
1211
|
+
Credit:
|
1212
|
+
Etienne Samson
|
1213
|
+
|
1214
|
+
Notes:
|
1215
|
+
Caught by ASAN:
|
1216
|
+
|
1217
|
+
=================================================================
|
1218
|
+
==73797==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60700001bcf0 at pc 0x00010026198d bp 0x7ffeefbfed30 sp 0x7ffeefbfe4d8
|
1219
|
+
READ of size 69 at 0x60700001bcf0 thread T0
|
1220
|
+
2019-07-04 08:35:30.292502+0200 atos[73890:2639175] examining /Users/USER/*/libssh2_clar [73797]
|
1221
|
+
#0 0x10026198c in wrap_memchr (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x1f98c)
|
1222
|
+
#1 0x1000f8e66 in file_read_publickey userauth.c:633
|
1223
|
+
#2 0x1000f2dc9 in userauth_publickey_fromfile userauth.c:1513
|
1224
|
+
#3 0x1000f2948 in libssh2_userauth_publickey_fromfile_ex userauth.c:1590
|
1225
|
+
#4 0x10000e254 in test_userauth_publickey__ed25519_auth_ok publickey.c:69
|
1226
|
+
#5 0x1000090c3 in clar_run_test clar.c:260
|
1227
|
+
#6 0x1000038f3 in clar_run_suite clar.c:343
|
1228
|
+
#7 0x100003272 in clar_test_run clar.c:522
|
1229
|
+
#8 0x10000c3cc in main runner.c:60
|
1230
|
+
#9 0x7fff5b43b3d4 in start (libdyld.dylib:x86_64+0x163d4)
|
1231
|
+
|
1232
|
+
0x60700001bcf0 is located 0 bytes to the right of 80-byte region [0x60700001bca0,0x60700001bcf0)
|
1233
|
+
allocated by thread T0 here:
|
1234
|
+
#0 0x10029e053 in wrap_malloc (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x5c053)
|
1235
|
+
#1 0x1000b4978 in libssh2_default_alloc session.c:67
|
1236
|
+
#2 0x1000f8aba in file_read_publickey userauth.c:597
|
1237
|
+
#3 0x1000f2dc9 in userauth_publickey_fromfile userauth.c:1513
|
1238
|
+
#4 0x1000f2948 in libssh2_userauth_publickey_fromfile_ex userauth.c:1590
|
1239
|
+
#5 0x10000e254 in test_userauth_publickey__ed25519_auth_ok publickey.c:69
|
1240
|
+
#6 0x1000090c3 in clar_run_test clar.c:260
|
1241
|
+
#7 0x1000038f3 in clar_run_suite clar.c:343
|
1242
|
+
#8 0x100003272 in clar_test_run clar.c:522
|
1243
|
+
#9 0x10000c3cc in main runner.c:60
|
1244
|
+
#10 0x7fff5b43b3d4 in start (libdyld.dylib:x86_64+0x163d4)
|
1245
|
+
|
1246
|
+
SUMMARY: AddressSanitizer: heap-buffer-overflow (libclang_rt.asan_osx_dynamic.dylib:x86_64h+0x1f98c) in wrap_memchr
|
1247
|
+
Shadow bytes around the buggy address:
|
1248
|
+
0x1c0e00003740: fd fd fd fd fd fd fd fd fd fd fa fa fa fa fd fd
|
1249
|
+
0x1c0e00003750: fd fd fd fd fd fd fd fa fa fa fa fa 00 00 00 00
|
1250
|
+
0x1c0e00003760: 00 00 00 00 00 00 fa fa fa fa 00 00 00 00 00 00
|
1251
|
+
0x1c0e00003770: 00 00 00 fa fa fa fa fa fd fd fd fd fd fd fd fd
|
1252
|
+
0x1c0e00003780: fd fd fa fa fa fa fd fd fd fd fd fd fd fd fd fa
|
1253
|
+
=>0x1c0e00003790: fa fa fa fa 00 00 00 00 00 00 00 00 00 00[fa]fa
|
1254
|
+
0x1c0e000037a0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
|
1255
|
+
0x1c0e000037b0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
|
1256
|
+
0x1c0e000037c0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
|
1257
|
+
0x1c0e000037d0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
|
1258
|
+
0x1c0e000037e0: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa
|
1259
|
+
Shadow byte legend (one shadow byte represents 8 application bytes):
|
1260
|
+
Addressable: 00
|
1261
|
+
Partially addressable: 01 02 03 04 05 06 07
|
1262
|
+
Heap left redzone: fa
|
1263
|
+
Freed heap region: fd
|
1264
|
+
Stack left redzone: f1
|
1265
|
+
Stack mid redzone: f2
|
1266
|
+
Stack right redzone: f3
|
1267
|
+
Stack after return: f5
|
1268
|
+
Stack use after scope: f8
|
1269
|
+
Global redzone: f9
|
1270
|
+
Global init order: f6
|
1271
|
+
Poisoned by user: f7
|
1272
|
+
Container overflow: fc
|
1273
|
+
Array cookie: ac
|
1274
|
+
Intra object redzone: bb
|
1275
|
+
ASan internal: fe
|
1276
|
+
Left alloca redzone: ca
|
1277
|
+
Right alloca redzone: cb
|
1278
|
+
Shadow gap: cc
|
1279
|
+
|
1280
|
+
- [Thilo Schulz brought this change]
|
1281
|
+
|
1282
|
+
openssl.c : Fix use-after-free crash on reinitialization of openssl backend
|
1283
|
+
|
1284
|
+
file : openssl.c
|
1285
|
+
|
1286
|
+
notes :
|
1287
|
+
libssh2's openssl backend has a use-after-free condition if HAVE_OPAQUE_STRUCTS is defined and you call libssh2_init() again after prior initialisation/deinitialisation of libssh2
|
1288
|
+
|
1289
|
+
credit : Thilo Schulz
|
1290
|
+
|
1291
|
+
- [axjowa brought this change]
|
1292
|
+
|
1293
|
+
openssl.h : Use of ifdef where if should be used (#389)
|
1294
|
+
|
1295
|
+
File : openssl.h
|
1296
|
+
|
1297
|
+
Notes :
|
1298
|
+
LIBSSH2_ECDSA and LIBSSH2_ED25519 are always defined so the #ifdef
|
1299
|
+
checks would never be false.
|
1300
|
+
|
1301
|
+
This change makes it possible to build libssh2 against OpenSSL built
|
1302
|
+
without EC support.
|
1303
|
+
|
1304
|
+
Change-Id: I0a2f07c2d80178314dcb7d505d1295d19cf15afd
|
1305
|
+
|
1306
|
+
Credit : axjowa
|
1307
|
+
|
1308
|
+
- [Zenju brought this change]
|
1309
|
+
|
1310
|
+
Agent.c : Preserve error info from agent_list_identities() (#374)
|
1311
|
+
|
1312
|
+
Files : agent.c
|
1313
|
+
|
1314
|
+
Notes :
|
1315
|
+
Currently the error details as returned by agent_transact_pageant() are overwritten by a generic "agent list id failed" message by int agent_list_identities(LIBSSH2_AGENT* agent).
|
1316
|
+
|
1317
|
+
Credit :
|
1318
|
+
Zenju
|
1319
|
+
|
1320
|
+
- [Who? Me?! brought this change]
|
1321
|
+
|
1322
|
+
Channel.c: Make sure the error code is set in _libssh2_channel_open() (#381)
|
1323
|
+
|
1324
|
+
File : Channel.c
|
1325
|
+
|
1326
|
+
Notes :
|
1327
|
+
if _libssh2_channel_open() fails, set the error code.
|
1328
|
+
|
1329
|
+
Credit :
|
1330
|
+
mark-i-m
|
1331
|
+
|
1332
|
+
- [Orgad Shaneh brought this change]
|
1333
|
+
|
1334
|
+
Kex.c, Remove unneeded call to strlen (#373)
|
1335
|
+
|
1336
|
+
File : Kex.c
|
1337
|
+
|
1338
|
+
Notes :
|
1339
|
+
Removed call to strlen
|
1340
|
+
|
1341
|
+
Credit :
|
1342
|
+
Orgad Shaneh
|
1343
|
+
|
1344
|
+
- [Pedro Monreal brought this change]
|
1345
|
+
|
1346
|
+
Spelling corrections (#380)
|
1347
|
+
|
1348
|
+
Files :
|
1349
|
+
libssh2.h, libssh2_sftp.h, bcrypt_pbkdf.c, mbedtls.c, sftp.c, ssh2.c
|
1350
|
+
|
1351
|
+
Notes :
|
1352
|
+
* Fixed misspellings
|
1353
|
+
|
1354
|
+
Credit :
|
1355
|
+
Pedro Monreal
|
1356
|
+
|
1357
|
+
- [Sebastián Katzer brought this change]
|
1358
|
+
|
1359
|
+
Fix Potential typecast error for `_libssh2_ecdsa_key_get_curve_type` (#383)
|
1360
|
+
|
1361
|
+
Issue : #383
|
1362
|
+
|
1363
|
+
Files : hostkey.c, crypto.h, openssl.c
|
1364
|
+
|
1365
|
+
Notes :
|
1366
|
+
* Fix potential typecast error for `_libssh2_ecdsa_key_get_curve_type`
|
1367
|
+
* Rename _libssh2_ecdsa_key_get_curve_type to _libssh2_ecdsa_get_curve_type
|
1368
|
+
|
1369
|
+
Credit :
|
1370
|
+
Sebastián Katzer
|
1371
|
+
|
1372
|
+
GitHub (20 Jun 2019)
|
1373
|
+
- [Will Cosgrove brought this change]
|
1374
|
+
|
1375
|
+
bump copyright date
|
1376
|
+
|
1377
|
+
Version 1.9.0 (19 Jun 2019)
|
1378
|
+
|
3
1379
|
GitHub (19 Jun 2019)
|
4
1380
|
- [Will Cosgrove brought this change]
|
5
1381
|
|
@@ -5453,489 +6829,3 @@ Peter Stuge (17 Jun 2010)
|
|
5453
6829
|
|
5454
6830
|
Daniel Stenberg (16 Jun 2010)
|
5455
6831
|
- libssh2_session_callback_set: extended the man page
|
5456
|
-
|
5457
|
-
- [John brought this change]
|
5458
|
-
|
5459
|
-
LIBSSH2_DEBUG: macro uses incorrect function variable
|
5460
|
-
|
5461
|
-
The LIBSSH2_DEBUG macro, defined in libssh2_priv.h, incorrectly uses the
|
5462
|
-
function variable ssh_msg_disconnect when it should use ssh_msg_debug.
|
5463
|
-
|
5464
|
-
This shows that the LIBSSH2_CALLBACK_DEBUG callback never has worked...
|
5465
|
-
|
5466
|
-
- warning: fix a compiler warning 'pointer differs in signedness'
|
5467
|
-
|
5468
|
-
As reported in bug #177
|
5469
|
-
|
5470
|
-
- portability: introduce LIBSSH2_INT64_T_FORMAT for 64bit printf()s
|
5471
|
-
|
5472
|
-
As pointed out in bug #177, some of the Windows compilers use
|
5473
|
-
%I64 to output 64 bit variables with the printf family.
|
5474
|
-
|
5475
|
-
- debug: avoid sending NULL to sprintf %s
|
5476
|
-
|
5477
|
-
Via the _libssh2_debug() macro/function. Pointed out by john in bug report
|
5478
|
-
|
5479
|
-
- sftp docs: show macro on macro page, only function on function page
|
5480
|
-
|
5481
|
-
The individual man pages for macros now show the full convenience
|
5482
|
-
macro as defined, and then the man page for the actual function
|
5483
|
-
only shows the function.
|
5484
|
-
|
5485
|
-
- code police: make the code use less than 80 columns
|
5486
|
-
|
5487
|
-
- libssh2_channel_write_ex: remove macros, added wording on buffer size
|
5488
|
-
|
5489
|
-
- libssh2_sftp_write: document buffer size and changed some ordering
|
5490
|
-
|
5491
|
-
- libssh2_channel_write_stderr: show how the macro is defined
|
5492
|
-
|
5493
|
-
- libssh2_channel_write: show how the macro is defined
|
5494
|
-
|
5495
|
-
- SFTP: limit write() to not produce overly large packets
|
5496
|
-
|
5497
|
-
sftp_write() now limits how much data it gets at a time even more
|
5498
|
-
than before. Since this function creates a complete outgoing
|
5499
|
-
packet based on what gets passed to it, it is crucial that it
|
5500
|
-
doesn't create too large packets.
|
5501
|
-
|
5502
|
-
With this method, there's also no longer any problem to use very
|
5503
|
-
large buffers in your application and feed that to libssh2. I've
|
5504
|
-
done numerous tests now with uploading data over SFTP using 100K
|
5505
|
-
buffers and I've had no problems with that.
|
5506
|
-
|
5507
|
-
- scp_write_nonblock: add transfer time info
|
5508
|
-
|
5509
|
-
Using the same timing logic and output format as
|
5510
|
-
sftp_write_nonblock allows us to very easily run benchmarks on
|
5511
|
-
SCP vs SFTP uploads using libssh2.
|
5512
|
-
|
5513
|
-
- sftp_write_nonblock: select() on socket, use *BIG* buffer, time transfer
|
5514
|
-
|
5515
|
-
The select() is just to make it nicer so that it doesn't
|
5516
|
-
crazy-loop on EAGAIN. The buffer size thing is mostly to verify
|
5517
|
-
that this really work as supposed.
|
5518
|
-
|
5519
|
-
Transfer timing is just a minor thing, but it can just as well be
|
5520
|
-
there and help us time and work on performance easier using out
|
5521
|
-
of the box examples.
|
5522
|
-
|
5523
|
-
- agent: use _libssh2_error() when returning errors
|
5524
|
-
|
5525
|
-
As pointed out in bug report #173, this module basically never
|
5526
|
-
used _libssh2_error() which made it work inconstently with other
|
5527
|
-
parts of the libssh2 code base. This is my first take at making
|
5528
|
-
this code more in line with the rest.
|
5529
|
-
|
5530
|
-
- inputchecks: make lots of API functions check for NULL pointers
|
5531
|
-
|
5532
|
-
If an application accidentally provides a NULL handle pointer to
|
5533
|
-
the channel or sftp public functions, they now return an error
|
5534
|
-
instead of segfaulting.
|
5535
|
-
|
5536
|
-
- libssh2_channel_eof: clarify that it returns negative on errors
|
5537
|
-
|
5538
|
-
- SFTP: keep the sftp error code as 32 bit
|
5539
|
-
|
5540
|
-
'last_errno' holds to the error code from the SFTP protocol and
|
5541
|
-
since that is 32 bits on the wire there's no point in using a
|
5542
|
-
long for this internally which is larger on some platforms.
|
5543
|
-
|
5544
|
-
- agent: make the code better deal with unexpected code flows
|
5545
|
-
|
5546
|
-
agent->ops gets initialized by the libssh2_agent_connect() call
|
5547
|
-
but we need to make sure that we don't segfault even if a bad
|
5548
|
-
sequence of function calls is used.
|
5549
|
-
|
5550
|
-
Alexander Lamaison (10 Jun 2010)
|
5551
|
-
- Better handling of invalid key files.
|
5552
|
-
|
5553
|
-
Passing an invalid public key to libssh2_userauth_publickey_fromfile_ex
|
5554
|
-
triggered an assertion. Replaced this with a runtime check that rejects
|
5555
|
-
obviously invalid key data.
|
5556
|
-
|
5557
|
-
Daniel Stenberg (10 Jun 2010)
|
5558
|
-
- version: we start working on 1.2.7 now
|
5559
|
-
|
5560
|
-
Version 1.2.6 (10 Jun 2010)
|
5561
|
-
|
5562
|
-
Daniel Stenberg (10 Jun 2010)
|
5563
|
-
- NEWS: add the 1.2.6 release details
|
5564
|
-
|
5565
|
-
- RELEASE-NOTES: 1.2.6 details added
|
5566
|
-
|
5567
|
-
Guenter Knauf (10 Jun 2010)
|
5568
|
-
- fixed libssh2.dsw to use the generated libssh2.dsp; removed old *.dsp files.
|
5569
|
-
|
5570
|
-
- moved MSVC strdup define to libssh2_config.h which we include already.
|
5571
|
-
|
5572
|
-
- added missing source files to src/NMakefile.
|
5573
|
-
|
5574
|
-
Daniel Stenberg (8 Jun 2010)
|
5575
|
-
- libssh2_poll: refer to poll(3) and select(3) instead
|
5576
|
-
|
5577
|
-
- example: fix strdup() for MSVC compiles
|
5578
|
-
|
5579
|
-
MSVC has a _strdup() that we better use. This was reported in bug
|
5580
|
-
|
5581
|
-
- SFTP: fail init SFTP if session isn't authenticated
|
5582
|
-
|
5583
|
-
Alexander Lamaison filed bug #172
|
5584
|
-
(http://trac.libssh2.org/ticket/172), and pointed out that SFTP
|
5585
|
-
init would do bad if the session isn't yet authenticated at the
|
5586
|
-
time of the call, so we now check for this situation and returns
|
5587
|
-
an error if detected. Calling sftp_init() at this point is bad
|
5588
|
-
usage to start with.
|
5589
|
-
|
5590
|
-
- direct_tcpip: bring back inclusion of libssh2_config.h
|
5591
|
-
|
5592
|
-
In order to increase portability of this example, I'm bringing
|
5593
|
-
the inclusion of libssh2_config.h back, and I also added an
|
5594
|
-
require that header for this example to compile.
|
5595
|
-
|
5596
|
-
I also made all code lines fit within 80 columns.
|
5597
|
-
|
5598
|
-
Guenter Knauf (3 Jun 2010)
|
5599
|
-
- cast away a warning.
|
5600
|
-
|
5601
|
-
- moved CRT_SECURE_NO_DEPRECATE define up so its defined before the winsock headers are included.
|
5602
|
-
|
5603
|
-
- fixed platform detection for MingW32 test makefile.
|
5604
|
-
|
5605
|
-
- MingW32 has gettimeofday() implemented, so proper ifdef this function here.
|
5606
|
-
|
5607
|
-
- removed MSVC ifdef since seems we can use __int64 still with latest headers.
|
5608
|
-
|
5609
|
-
- changed copyright notice for MinW32 and NetWare binaries.
|
5610
|
-
|
5611
|
-
- cleaned up MSVC ifdefs which where spreaded over 3 places.
|
5612
|
-
|
5613
|
-
- added uint8_t typedef for NetWare CLIB platform.
|
5614
|
-
|
5615
|
-
- if the function declaration gets changed the header should be changed too.
|
5616
|
-
|
5617
|
-
- this is MSVC specific and doesnt apply for all Win32 compilers;
|
5618
|
-
the uint8_t typedef clashes with MingW32 headers.
|
5619
|
-
|
5620
|
-
- updated MingW32 makefiles for latest dependency lib versions.
|
5621
|
-
|
5622
|
-
- updated NetWare makefiles for latest dependency lib versions.
|
5623
|
-
|
5624
|
-
Dan Fandrich (30 May 2010)
|
5625
|
-
- Fixed compiling with libgcrypt
|
5626
|
-
|
5627
|
-
A change of parameter types from unsigned long to size_t was
|
5628
|
-
missed in the prototype in libgcrypt.h
|
5629
|
-
|
5630
|
-
Daniel Stenberg (28 May 2010)
|
5631
|
-
- statvfs: use libssh2_sftp_statvfs only, no "_ex"
|
5632
|
-
|
5633
|
-
As the long-term goal is to get rid of the extensive set of
|
5634
|
-
macros from the API we can just as well start small by not adding
|
5635
|
-
new macros when we add new functions. Therefore we let the
|
5636
|
-
function be libssh2_sftp_statvfs() plainly without using an _ex
|
5637
|
-
suffix.
|
5638
|
-
|
5639
|
-
I also made it use size_t instead of unsigned int for the string
|
5640
|
-
length as that too is a long-term goal for the API.
|
5641
|
-
|
5642
|
-
- [Grubsky Grigory brought this change]
|
5643
|
-
|
5644
|
-
DSP: output lib name typo
|
5645
|
-
|
5646
|
-
- [Grubsky Grigory brought this change]
|
5647
|
-
|
5648
|
-
win32: provide a uint8_t typedef for better building on windows
|
5649
|
-
|
5650
|
-
- agent: win32: fix bad _libssh2_store_str call
|
5651
|
-
|
5652
|
-
As pointed out by Grubsky Grigory <g.grubsky@securitycode.ru>, I
|
5653
|
-
made a mistake when I added the _libssh2_store_str() call before
|
5654
|
-
and I made a slightly different patch than what he suggested.
|
5655
|
-
Based purely on taste.
|
5656
|
-
|
5657
|
-
Peter Stuge (24 May 2010)
|
5658
|
-
- [Joey Degges brought this change]
|
5659
|
-
|
5660
|
-
Add libssh2_sftp_statvfs() and libssh2_sftp_fstatvfs()
|
5661
|
-
|
5662
|
-
These can be used to get file system statistics from servers that
|
5663
|
-
support the statvfs@openssh.com and fstatvfs@openssh.com extensions.
|
5664
|
-
|
5665
|
-
Alexander Lamaison (22 May 2010)
|
5666
|
-
- [Jose Baars brought this change]
|
5667
|
-
|
5668
|
-
VMS specific: make sure final release can be installed over daily build
|
5669
|
-
|
5670
|
-
- [Jose Baars brought this change]
|
5671
|
-
|
5672
|
-
VMS: small improvement to the man2help utilities
|
5673
|
-
|
5674
|
-
Peter Stuge (22 May 2010)
|
5675
|
-
- [Joey Degges brought this change]
|
5676
|
-
|
5677
|
-
libssh2_exit and libssh2_sftp_readdir man page fixes
|
5678
|
-
|
5679
|
-
Daniel Stenberg (21 May 2010)
|
5680
|
-
- spelling: s/sue/use
|
5681
|
-
|
5682
|
-
Alexander Lamaison (21 May 2010)
|
5683
|
-
- Change magic port number for generic knownhost check.
|
5684
|
-
|
5685
|
-
libssh2_knownhost_checkp took 0 as a magic port number that indicated
|
5686
|
-
a 'generic' check should be performed. However, 0 is a valid port
|
5687
|
-
number in its own right so this commit changes the magic value to any
|
5688
|
-
negative int.
|
5689
|
-
|
5690
|
-
Mikhail Gusarov (5 May 2010)
|
5691
|
-
- Add re-discovered copyright holders to COPYING
|
5692
|
-
|
5693
|
-
- Restoring copyright statements from pre-git era
|
5694
|
-
|
5695
|
-
Eli Fant has contributed fragmenting SFTP requests
|
5696
|
-
|
5697
|
-
- Restoring my copyright statements from pre-git era
|
5698
|
-
|
5699
|
-
keyboard_interactive, 'exit-status' information packet, non-atomic read/write
|
5700
|
-
under FreeBSD, multi-channel operation bugfixes.
|
5701
|
-
|
5702
|
-
Daniel Stenberg (3 May 2010)
|
5703
|
-
- pedantic: make the code C90 clean
|
5704
|
-
|
5705
|
-
Peter Stuge (3 May 2010)
|
5706
|
-
- Do proper keyboard-interactive user dialog in the sftp.c example
|
5707
|
-
|
5708
|
-
Daniel Stenberg (3 May 2010)
|
5709
|
-
- added to tarball: libssh2_knownhost_checkp.3
|
5710
|
-
|
5711
|
-
- knownhost: support [host]:port in knownhost file
|
5712
|
-
|
5713
|
-
OpenSSH has ways to add hosts to the knownhosts file that include
|
5714
|
-
a specific port number which makes the key associated with only
|
5715
|
-
that specific host+port pair. libssh2 previously did not support
|
5716
|
-
this, and I was forced to add a new function to the API to
|
5717
|
-
properly expose this ability to applications:
|
5718
|
-
libssh2_knownhost_checkp()
|
5719
|
-
|
5720
|
-
To *add* such hosts to the knownhosts file, you make sure to pass
|
5721
|
-
on the host name in that manner to the libssh2_knownhost_addc()
|
5722
|
-
function.
|
5723
|
-
|
5724
|
-
- init/exit: mention these were added in 1.2.5
|
5725
|
-
|
5726
|
-
- libssh2_knownhost_check docs: correct the prototype
|
5727
|
-
|
5728
|
-
- examples: avoid use of uninitialized variable 'sock'
|
5729
|
-
|
5730
|
-
- KEX: stop pretending we negotiate language
|
5731
|
-
|
5732
|
-
There was some stub-like parts of an implementation for
|
5733
|
-
implementing kex language negotiation that caused clang-analyzer
|
5734
|
-
to warn and as it did nothing I've now removed the dead code.
|
5735
|
-
|
5736
|
-
- Uninitialized argument
|
5737
|
-
|
5738
|
-
- sftpdir: removed dead assignment
|
5739
|
-
|
5740
|
-
- Makefile.am: include the VMS-specific config header as well
|
5741
|
-
|
5742
|
-
- [Jose Baars brought this change]
|
5743
|
-
|
5744
|
-
Add VMS specific libssh2_config.h
|
5745
|
-
|
5746
|
-
- fix Value stored to 's' is never read warning
|
5747
|
-
|
5748
|
-
and moved variable declaration of s to be more local
|
5749
|
-
|
5750
|
-
- kexinit: simplify the code and avoid scan-build warning
|
5751
|
-
|
5752
|
-
Previously it would say "Value stored to 's' is never read" due
|
5753
|
-
fourth increment of 's'.
|
5754
|
-
|
5755
|
-
Alexander Lamaison (28 Apr 2010)
|
5756
|
-
- Removed unecessary brackets.
|
5757
|
-
|
5758
|
-
- Changed sftp_attrsize macro to a static function.
|
5759
|
-
|
5760
|
-
Daniel Stenberg (28 Apr 2010)
|
5761
|
-
- release: include the VMS-specific files
|
5762
|
-
|
5763
|
-
- sftp_attrsize: protect the macro argument with proper parentheses
|
5764
|
-
|
5765
|
-
- ssh2_agent: avoid using 'session' uninitialized on failures
|
5766
|
-
|
5767
|
-
- examples: remove assignments of variable rc that's never used
|
5768
|
-
|
5769
|
-
- publickey_init: remove useless variable increment
|
5770
|
-
|
5771
|
-
- hostkey_method_ssh_rsa_init: remove useless variable increment
|
5772
|
-
|
5773
|
-
- packet_x11_open: removed useless variable increment
|
5774
|
-
|
5775
|
-
and made the declaration of a variable more local
|
5776
|
-
|
5777
|
-
- packet_queue_listener: removed useless variable increment
|
5778
|
-
|
5779
|
-
and made the declaration of a variable more local
|
5780
|
-
|
5781
|
-
- sftp_read: move a read_responses array to where its used
|
5782
|
-
|
5783
|
-
I find that this increases readability since the array is used
|
5784
|
-
only in the function call just immediately below and nowhere
|
5785
|
-
else.
|
5786
|
-
|
5787
|
-
- sftp_readdir: turn a small array static const and move it
|
5788
|
-
|
5789
|
-
- sftp_attrsize: converted function to a macro
|
5790
|
-
|
5791
|
-
This way, the macro can evaluate a static number at compile time
|
5792
|
-
for two out of four uses, and it probably runs faster for the
|
5793
|
-
other two cases too.
|
5794
|
-
|
5795
|
-
- sftp_open: deal with short channel_write calls
|
5796
|
-
|
5797
|
-
This was an old TODO that just wasn't done before. If
|
5798
|
-
channel_write returns short, that is not an error.
|
5799
|
-
|
5800
|
-
- sftp_open: clean up, better check of input data
|
5801
|
-
|
5802
|
-
The clang-analyzer report made it look into this function and
|
5803
|
-
I've went through it to remove a potential use of an
|
5804
|
-
uninitialized variable and I also added some validation of input
|
5805
|
-
data received from the server.
|
5806
|
-
|
5807
|
-
In general, lots of more code in this file need to validate the
|
5808
|
-
input before assuming it is correct: there are servers out there
|
5809
|
-
that have bugs or just have another idea of how to do the SFTP
|
5810
|
-
protocol.
|
5811
|
-
|
5812
|
-
- bugfix: avoid using the socket if it failed to create one
|
5813
|
-
|
5814
|
-
- bugfix: potential use of NULL pointer
|
5815
|
-
|
5816
|
-
- libssh2_userauth_password_ex: clarify errors somewhat
|
5817
|
-
|
5818
|
-
The errors mentioned in this man page are possible return codes
|
5819
|
-
but not necessarily the only return codes that this can return.
|
5820
|
-
|
5821
|
-
Also reformatted the typ prototypes somewhat.
|
5822
|
-
|
5823
|
-
- examples: fixed and made them more similar
|
5824
|
-
|
5825
|
-
The channel read/write functions can return 0 in legitimate cases
|
5826
|
-
without it being an error, and we need to loop properly if they
|
5827
|
-
return short.
|
5828
|
-
|
5829
|
-
- [Jose Baars brought this change]
|
5830
|
-
|
5831
|
-
VMS port of libssh2; changes in the libssh2 common code
|
5832
|
-
|
5833
|
-
- Makefile: added the two news headers userauth.h and session.h
|
5834
|
-
|
5835
|
-
- cleanup: prefer the internal functions
|
5836
|
-
|
5837
|
-
To get the blocking vs non-blocking to work as smooth as possible
|
5838
|
-
and behave better internally, we avoid using the external
|
5839
|
-
interfaces when calling functions internally.
|
5840
|
-
|
5841
|
-
Renamed a few internal functions to use _libssh2 prefix when not
|
5842
|
-
being private within a file, and removed the libssh2_ for one
|
5843
|
-
that was private within the file.
|
5844
|
-
|
5845
|
-
- session_free: remove dead code
|
5846
|
-
|
5847
|
-
- libssh2_publickey_init: fixed to work better non-blocking
|
5848
|
-
|
5849
|
-
This was triggered by a clang-analyzer complaint that turned out
|
5850
|
-
to be valid, and it made me dig deeper and fix some generic non-
|
5851
|
-
blocking problems I disovered in the code.
|
5852
|
-
|
5853
|
-
While cleaning this up, I moved session-specific stuff over to a
|
5854
|
-
new session.h header from the libssh2_priv.h header.
|
5855
|
-
|
5856
|
-
- channel: reduce duplicated free and returns
|
5857
|
-
|
5858
|
-
Simplified the code by trying to free data and return on a single
|
5859
|
-
spot.
|
5860
|
-
|
5861
|
-
- channel: make variables more local
|
5862
|
-
|
5863
|
-
By making 'data' and 'data_len' more local in several places in
|
5864
|
-
this file it will be easier to spot how they are used and we'll
|
5865
|
-
get less risks to accidentally do bad things with them.
|
5866
|
-
|
5867
|
-
Mikhail Gusarov (24 Apr 2010)
|
5868
|
-
- Fix typos in manpages, catched by Lintian
|
5869
|
-
|
5870
|
-
Daniel Stenberg (24 Apr 2010)
|
5871
|
-
- channel_request_pty: simplify the code
|
5872
|
-
|
5873
|
-
clang-analyzer pointed out how 'data' could be accessed as a NULL
|
5874
|
-
pointer if the wrong state was set, and while I don't see that
|
5875
|
-
happen in real-life the code flow is easier to read and follow by
|
5876
|
-
moving the LIBSSH2_FREE() call into the block that is supposed to
|
5877
|
-
deal with the data pointer anyway.
|
5878
|
-
|
5879
|
-
- libssh2_channel_process_startup: simplify the code
|
5880
|
-
|
5881
|
-
clang-analyzer pointed out how 'data' could be accessed as a NULL
|
5882
|
-
pointer if the wrong state was set, and while I don't see that
|
5883
|
-
happen in real-life the code flow is easier to read and follow by
|
5884
|
-
moving the LIBSSH2_FREE() call into the block that is supposed to
|
5885
|
-
deal with the data pointer anyway.
|
5886
|
-
|
5887
|
-
- sftp_close_handle: add precation to not access NULL pointer
|
5888
|
-
|
5889
|
-
clang-analyzer pointed this out as a "Pass-by-value argument in
|
5890
|
-
function call is undefined" but while I can't see exactly how
|
5891
|
-
this can ever happen in reality I think a little check for safety
|
5892
|
-
isn't such a bad thing here.
|
5893
|
-
|
5894
|
-
- scp_write_nonblock: Value stored to 'nread' is never read
|
5895
|
-
|
5896
|
-
- scp_write: Value stored to 'ptr' is never read
|
5897
|
-
|
5898
|
-
- scp_write_nonblock: Value stored to 'ptr' is never read
|
5899
|
-
|
5900
|
-
- sftp_mkdir: less silly output but show failures
|
5901
|
-
|
5902
|
-
- [Jose Baars brought this change]
|
5903
|
-
|
5904
|
-
VMS port of libssh2 including VMS specific build procedures
|
5905
|
-
|
5906
|
-
- two variable types changes, made lines less than 80 columns
|
5907
|
-
|
5908
|
-
The two variable type changes are only to match type variable
|
5909
|
-
fields actually read from the binary protocol.
|
5910
|
-
|
5911
|
-
- remove check for negative padding_length
|
5912
|
-
|
5913
|
-
It was silly, since it is read as an unsigned char...
|
5914
|
-
|
5915
|
-
- hostkey_method_ssh_dss_init: Value stored to 's' is never read
|
5916
|
-
|
5917
|
-
- libssh2_banner_set: avoid unnecessary increment and explain code
|
5918
|
-
|
5919
|
-
- agent_transact_unix: remove unused variable
|
5920
|
-
|
5921
|
-
- remove two unnecessary increments
|
5922
|
-
|
5923
|
-
- more code converted to use _libssh2_store_*()
|
5924
|
-
|
5925
|
-
- libssh2_publickey_list_fetch: removed unused variables
|
5926
|
-
|
5927
|
-
- libssh2_publickey_init: remove unused variables
|
5928
|
-
|
5929
|
-
- libssh2_scp_send64: added to API to provide large file transfers
|
5930
|
-
|
5931
|
-
The previously existing libssh2_scp_send_ex() function has no way
|
5932
|
-
to send files that are larger than 'size_t' which on 32bit
|
5933
|
-
systems mean 4GB. This new API uses a libssh2_int64_t type and
|
5934
|
-
should thus on most modern systems be able to send enormous
|
5935
|
-
files.
|
5936
|
-
|
5937
|
-
- sftp_init: remove unused variables and assignments
|
5938
|
-
|
5939
|
-
- libssh2_knownhost_check: Value stored to 'keylen' is never read
|
5940
|
-
|
5941
|
-
- hostkey: fix compiler warning
|