rugged 0.28.4 → 0.28.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +0 -1
- data/vendor/libgit2/CMakeLists.txt +16 -36
- data/vendor/libgit2/COPYING +0 -28
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +1 -5
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +0 -6
- data/vendor/libgit2/deps/http-parser/http_parser.c +6 -11
- data/vendor/libgit2/deps/regex/CMakeLists.txt +2 -0
- data/vendor/libgit2/deps/regex/COPYING +502 -0
- data/vendor/libgit2/deps/regex/config.h +7 -0
- data/vendor/libgit2/deps/regex/regcomp.c +3857 -0
- data/vendor/libgit2/deps/regex/regex.c +92 -0
- data/vendor/libgit2/deps/regex/regex.h +582 -0
- data/vendor/libgit2/deps/regex/regex_internal.c +1744 -0
- data/vendor/libgit2/deps/regex/regex_internal.h +819 -0
- data/vendor/libgit2/deps/regex/regexec.c +4369 -0
- data/vendor/libgit2/deps/zlib/adler32.c +7 -0
- data/vendor/libgit2/deps/zlib/crc32.c +7 -0
- data/vendor/libgit2/include/git2.h +0 -2
- data/vendor/libgit2/include/git2/apply.h +2 -22
- data/vendor/libgit2/include/git2/attr.h +12 -19
- data/vendor/libgit2/include/git2/blame.h +2 -2
- data/vendor/libgit2/include/git2/blob.h +12 -44
- data/vendor/libgit2/include/git2/buffer.h +14 -20
- data/vendor/libgit2/include/git2/checkout.h +14 -46
- data/vendor/libgit2/include/git2/cherrypick.h +3 -3
- data/vendor/libgit2/include/git2/clone.h +2 -2
- data/vendor/libgit2/include/git2/commit.h +1 -23
- data/vendor/libgit2/include/git2/common.h +5 -7
- data/vendor/libgit2/include/git2/config.h +12 -12
- data/vendor/libgit2/include/git2/deprecated.h +3 -243
- data/vendor/libgit2/include/git2/describe.h +4 -4
- data/vendor/libgit2/include/git2/diff.h +14 -16
- data/vendor/libgit2/include/git2/filter.h +0 -8
- data/vendor/libgit2/include/git2/index.h +1 -2
- data/vendor/libgit2/include/git2/indexer.h +4 -48
- data/vendor/libgit2/include/git2/inttypes.h +309 -0
- data/vendor/libgit2/include/git2/merge.h +10 -6
- data/vendor/libgit2/include/git2/net.h +5 -0
- data/vendor/libgit2/include/git2/object.h +14 -2
- data/vendor/libgit2/include/git2/odb.h +2 -3
- data/vendor/libgit2/include/git2/odb_backend.h +4 -5
- data/vendor/libgit2/include/git2/oid.h +1 -1
- data/vendor/libgit2/include/git2/pack.h +1 -12
- data/vendor/libgit2/include/git2/proxy.h +3 -5
- data/vendor/libgit2/include/git2/rebase.h +2 -46
- data/vendor/libgit2/include/git2/refs.h +0 -19
- data/vendor/libgit2/include/git2/remote.h +12 -35
- data/vendor/libgit2/include/git2/repository.h +2 -24
- data/vendor/libgit2/include/git2/revert.h +1 -1
- data/vendor/libgit2/include/git2/stash.h +3 -3
- data/vendor/libgit2/include/git2/status.h +16 -25
- data/vendor/libgit2/include/git2/submodule.h +3 -20
- data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
- data/vendor/libgit2/include/git2/sys/odb_backend.h +4 -48
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +21 -57
- data/vendor/libgit2/include/git2/sys/repository.h +1 -5
- data/vendor/libgit2/include/git2/sys/time.h +31 -0
- data/vendor/libgit2/include/git2/sys/transport.h +2 -2
- data/vendor/libgit2/include/git2/tag.h +2 -11
- data/vendor/libgit2/include/git2/trace.h +2 -2
- data/vendor/libgit2/include/git2/transport.h +340 -11
- data/vendor/libgit2/include/git2/tree.h +1 -1
- data/vendor/libgit2/include/git2/types.h +89 -4
- data/vendor/libgit2/include/git2/version.h +2 -2
- data/vendor/libgit2/include/git2/worktree.h +5 -5
- data/vendor/libgit2/libgit2.pc.in +13 -0
- data/vendor/libgit2/src/CMakeLists.txt +222 -88
- data/vendor/libgit2/src/alloc.c +14 -2
- data/vendor/libgit2/src/apply.c +30 -60
- data/vendor/libgit2/src/attr.c +64 -70
- data/vendor/libgit2/src/attr_file.c +96 -189
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +46 -44
- data/vendor/libgit2/src/attrcache.h +1 -2
- data/vendor/libgit2/src/blame.c +5 -17
- data/vendor/libgit2/src/blame.h +1 -1
- data/vendor/libgit2/src/blame_git.c +7 -21
- data/vendor/libgit2/src/blob.c +17 -81
- data/vendor/libgit2/src/blob.h +2 -2
- data/vendor/libgit2/src/branch.c +5 -29
- data/vendor/libgit2/src/buffer.c +7 -14
- data/vendor/libgit2/src/cache.c +33 -26
- data/vendor/libgit2/src/cache.h +1 -1
- data/vendor/libgit2/src/cc-compat.h +0 -5
- data/vendor/libgit2/src/checkout.c +16 -26
- data/vendor/libgit2/src/cherrypick.c +3 -9
- data/vendor/libgit2/src/clone.c +7 -29
- data/vendor/libgit2/src/clone.h +0 -4
- data/vendor/libgit2/src/commit.c +21 -69
- data/vendor/libgit2/src/commit.h +0 -6
- data/vendor/libgit2/src/commit_list.c +76 -28
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +75 -3
- data/vendor/libgit2/src/config.c +40 -31
- data/vendor/libgit2/src/config.h +6 -7
- data/vendor/libgit2/src/config_backend.h +0 -12
- data/vendor/libgit2/src/config_cache.c +39 -39
- data/vendor/libgit2/src/config_entries.c +99 -69
- data/vendor/libgit2/src/config_entries.h +0 -1
- data/vendor/libgit2/src/config_file.c +380 -337
- data/vendor/libgit2/src/config_mem.c +16 -12
- data/vendor/libgit2/src/config_parse.c +29 -49
- data/vendor/libgit2/src/config_parse.h +12 -13
- data/vendor/libgit2/src/crlf.c +14 -14
- data/vendor/libgit2/src/describe.c +20 -21
- data/vendor/libgit2/src/diff.c +58 -43
- data/vendor/libgit2/src/diff.h +1 -2
- data/vendor/libgit2/src/diff_driver.c +38 -37
- data/vendor/libgit2/src/diff_file.c +7 -9
- data/vendor/libgit2/src/diff_file.h +1 -1
- data/vendor/libgit2/src/diff_generate.c +85 -135
- data/vendor/libgit2/src/diff_generate.h +2 -2
- data/vendor/libgit2/src/diff_parse.c +1 -1
- data/vendor/libgit2/src/diff_print.c +13 -25
- data/vendor/libgit2/src/diff_stats.c +1 -1
- data/vendor/libgit2/src/diff_tform.c +4 -4
- data/vendor/libgit2/src/errors.c +22 -12
- data/vendor/libgit2/src/features.h.in +2 -9
- data/vendor/libgit2/src/fetch.c +2 -7
- data/vendor/libgit2/src/fetchhead.c +1 -1
- data/vendor/libgit2/src/filebuf.c +10 -6
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/{futils.c → fileops.c} +17 -21
- data/vendor/libgit2/src/{futils.h → fileops.h} +5 -5
- data/vendor/libgit2/src/filter.c +8 -16
- data/vendor/libgit2/src/fnmatch.c +248 -0
- data/vendor/libgit2/src/fnmatch.h +48 -0
- data/vendor/libgit2/src/global.c +40 -12
- data/vendor/libgit2/src/global.h +2 -0
- data/vendor/libgit2/src/hash.c +0 -61
- data/vendor/libgit2/src/hash.h +21 -19
- data/vendor/libgit2/src/hash/{sha1/collisiondetect.c → hash_collisiondetect.h} +17 -14
- data/vendor/libgit2/src/hash/{sha1/common_crypto.c → hash_common_crypto.h} +19 -15
- data/vendor/libgit2/src/hash/{sha1/generic.c → hash_generic.c} +10 -22
- data/vendor/libgit2/src/hash/{sha1/generic.h → hash_generic.h} +14 -4
- data/vendor/libgit2/src/hash/{sha1/mbedtls.c → hash_mbedtls.c} +7 -15
- data/vendor/libgit2/src/hash/{sha1/mbedtls.h → hash_mbedtls.h} +11 -6
- data/vendor/libgit2/src/hash/{sha1/openssl.c → hash_openssl.h} +18 -14
- data/vendor/libgit2/src/hash/{sha1/win32.c → hash_win32.c} +24 -34
- data/vendor/libgit2/src/hash/{sha1/win32.h → hash_win32.h} +19 -6
- data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.c +3 -14
- data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.h +0 -0
- data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.c +0 -0
- data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.h +0 -0
- data/vendor/libgit2/src/hashsig.c +1 -1
- data/vendor/libgit2/src/idxmap.c +65 -91
- data/vendor/libgit2/src/idxmap.h +15 -151
- data/vendor/libgit2/src/ignore.c +38 -32
- data/vendor/libgit2/src/index.c +43 -66
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +70 -69
- data/vendor/libgit2/src/integer.h +4 -39
- data/vendor/libgit2/src/iterator.c +22 -27
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +44 -58
- data/vendor/libgit2/src/merge_driver.c +4 -4
- data/vendor/libgit2/src/merge_file.c +1 -1
- data/vendor/libgit2/src/mwindow.c +23 -18
- data/vendor/libgit2/src/mwindow.h +4 -4
- data/vendor/libgit2/src/netops.c +165 -55
- data/vendor/libgit2/src/netops.h +25 -3
- data/vendor/libgit2/src/notes.c +2 -2
- data/vendor/libgit2/src/object.c +2 -2
- data/vendor/libgit2/src/object.h +0 -2
- data/vendor/libgit2/src/odb.c +23 -41
- data/vendor/libgit2/src/odb.h +2 -3
- data/vendor/libgit2/src/odb_loose.c +10 -17
- data/vendor/libgit2/src/odb_mempack.c +23 -10
- data/vendor/libgit2/src/odb_pack.c +4 -4
- data/vendor/libgit2/src/offmap.c +55 -43
- data/vendor/libgit2/src/offmap.h +24 -102
- data/vendor/libgit2/src/oid.c +1 -6
- data/vendor/libgit2/src/oidmap.c +57 -39
- data/vendor/libgit2/src/oidmap.h +19 -99
- data/vendor/libgit2/src/pack-objects.c +32 -25
- data/vendor/libgit2/src/pack-objects.h +1 -1
- data/vendor/libgit2/src/pack.c +47 -45
- data/vendor/libgit2/src/pack.h +14 -12
- data/vendor/libgit2/src/parse.c +0 -10
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +1 -1
- data/vendor/libgit2/src/patch_generate.c +2 -2
- data/vendor/libgit2/src/patch_parse.c +31 -124
- data/vendor/libgit2/src/path.c +6 -43
- data/vendor/libgit2/src/path.h +0 -2
- data/vendor/libgit2/src/pathspec.c +13 -13
- data/vendor/libgit2/src/pool.c +22 -26
- data/vendor/libgit2/src/pool.h +7 -7
- data/vendor/libgit2/src/posix.c +7 -7
- data/vendor/libgit2/src/posix.h +1 -12
- data/vendor/libgit2/src/proxy.c +2 -7
- data/vendor/libgit2/src/push.c +5 -10
- data/vendor/libgit2/src/reader.c +2 -2
- data/vendor/libgit2/src/rebase.c +7 -66
- data/vendor/libgit2/src/refdb.c +0 -12
- data/vendor/libgit2/src/refdb_fs.c +165 -214
- data/vendor/libgit2/src/reflog.c +13 -11
- data/vendor/libgit2/src/refs.c +18 -24
- data/vendor/libgit2/src/refspec.c +16 -9
- data/vendor/libgit2/src/remote.c +52 -50
- data/vendor/libgit2/src/remote.h +2 -2
- data/vendor/libgit2/src/repository.c +100 -115
- data/vendor/libgit2/src/repository.h +40 -49
- data/vendor/libgit2/src/revert.c +3 -8
- data/vendor/libgit2/src/revparse.c +19 -18
- data/vendor/libgit2/src/revwalk.c +30 -63
- data/vendor/libgit2/src/revwalk.h +0 -20
- data/vendor/libgit2/src/settings.c +0 -5
- data/vendor/libgit2/src/sortedcache.c +26 -12
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +65 -45
- data/vendor/libgit2/src/status.c +9 -15
- data/vendor/libgit2/src/{allocators/stdalloc.c → stdalloc.c} +4 -3
- data/vendor/libgit2/src/{allocators/stdalloc.h → stdalloc.h} +4 -4
- data/vendor/libgit2/src/streams/openssl.c +0 -20
- data/vendor/libgit2/src/streams/socket.c +2 -2
- data/vendor/libgit2/src/strmap.c +84 -37
- data/vendor/libgit2/src/strmap.h +33 -105
- data/vendor/libgit2/src/submodule.c +70 -102
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +1 -11
- data/vendor/libgit2/src/tag.c +2 -10
- data/vendor/libgit2/src/trace.c +1 -1
- data/vendor/libgit2/src/trace.h +2 -2
- data/vendor/libgit2/src/trailer.c +32 -46
- data/vendor/libgit2/src/transaction.c +9 -10
- data/vendor/libgit2/src/transports/auth.c +9 -10
- data/vendor/libgit2/src/transports/auth.h +4 -11
- data/vendor/libgit2/src/transports/auth_negotiate.c +9 -23
- data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
- data/vendor/libgit2/src/transports/cred.c +6 -6
- data/vendor/libgit2/src/{allocators/win32_crtdbg.h → transports/cred.h} +4 -5
- data/vendor/libgit2/src/transports/git.c +16 -11
- data/vendor/libgit2/src/transports/http.c +276 -419
- data/vendor/libgit2/src/transports/http.h +1 -1
- data/vendor/libgit2/src/transports/local.c +9 -9
- data/vendor/libgit2/src/transports/smart.c +17 -17
- data/vendor/libgit2/src/transports/smart.h +2 -2
- data/vendor/libgit2/src/transports/smart_protocol.c +60 -36
- data/vendor/libgit2/src/transports/ssh.c +36 -46
- data/vendor/libgit2/src/transports/winhttp.c +207 -231
- data/vendor/libgit2/src/tree-cache.c +7 -14
- data/vendor/libgit2/src/tree.c +24 -10
- data/vendor/libgit2/src/unix/map.c +1 -1
- data/vendor/libgit2/src/unix/posix.h +11 -1
- data/vendor/libgit2/src/userdiff.h +1 -3
- data/vendor/libgit2/src/util.c +53 -51
- data/vendor/libgit2/src/util.h +21 -16
- data/vendor/libgit2/src/win32/map.c +5 -3
- data/vendor/libgit2/src/win32/path_w32.c +2 -12
- data/vendor/libgit2/src/win32/path_w32.h +29 -0
- data/vendor/libgit2/src/win32/posix.h +4 -1
- data/vendor/libgit2/src/win32/posix_w32.c +5 -40
- data/vendor/libgit2/src/win32/precompiled.h +2 -0
- data/vendor/libgit2/src/win32/thread.c +10 -5
- data/vendor/libgit2/src/win32/w32_buffer.c +3 -7
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +93 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +2 -0
- data/vendor/libgit2/src/win32/w32_stack.c +9 -4
- data/vendor/libgit2/src/win32/w32_stack.h +3 -3
- data/vendor/libgit2/src/win32/w32_util.c +0 -31
- data/vendor/libgit2/src/win32/w32_util.h +32 -6
- data/vendor/libgit2/src/worktree.c +22 -36
- data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
- data/vendor/libgit2/src/xdiff/xmerge.c +0 -12
- data/vendor/libgit2/src/xdiff/xpatience.c +0 -3
- metadata +34 -98
- data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +0 -28
- data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +0 -38
- data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +0 -37
- data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +0 -110
- data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +0 -53
- data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +0 -124
- data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +0 -66
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +0 -21
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -33
- data/vendor/libgit2/deps/ntlmclient/crypt.h +0 -64
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +0 -120
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +0 -18
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +0 -145
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +0 -18
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +0 -130
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +0 -21
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +0 -1420
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +0 -174
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +0 -320
- data/vendor/libgit2/deps/ntlmclient/unicode.h +0 -36
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +0 -445
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +0 -201
- data/vendor/libgit2/deps/ntlmclient/utf8.h +0 -1257
- data/vendor/libgit2/deps/ntlmclient/util.c +0 -21
- data/vendor/libgit2/deps/ntlmclient/util.h +0 -14
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +0 -140
- data/vendor/libgit2/deps/pcre/COPYING +0 -5
- data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +0 -22
- data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +0 -17
- data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +0 -58
- data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +0 -29
- data/vendor/libgit2/deps/pcre/config.h.in +0 -57
- data/vendor/libgit2/deps/pcre/pcre.h +0 -641
- data/vendor/libgit2/deps/pcre/pcre_byte_order.c +0 -319
- data/vendor/libgit2/deps/pcre/pcre_chartables.c +0 -198
- data/vendor/libgit2/deps/pcre/pcre_compile.c +0 -9800
- data/vendor/libgit2/deps/pcre/pcre_config.c +0 -190
- data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +0 -3676
- data/vendor/libgit2/deps/pcre/pcre_exec.c +0 -7173
- data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +0 -245
- data/vendor/libgit2/deps/pcre/pcre_get.c +0 -669
- data/vendor/libgit2/deps/pcre/pcre_globals.c +0 -86
- data/vendor/libgit2/deps/pcre/pcre_internal.h +0 -2787
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +0 -11913
- data/vendor/libgit2/deps/pcre/pcre_maketables.c +0 -156
- data/vendor/libgit2/deps/pcre/pcre_newline.c +0 -210
- data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +0 -94
- data/vendor/libgit2/deps/pcre/pcre_printint.c +0 -834
- data/vendor/libgit2/deps/pcre/pcre_refcount.c +0 -92
- data/vendor/libgit2/deps/pcre/pcre_string_utils.c +0 -211
- data/vendor/libgit2/deps/pcre/pcre_study.c +0 -1686
- data/vendor/libgit2/deps/pcre/pcre_tables.c +0 -727
- data/vendor/libgit2/deps/pcre/pcre_ucd.c +0 -3644
- data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +0 -301
- data/vendor/libgit2/deps/pcre/pcre_version.c +0 -98
- data/vendor/libgit2/deps/pcre/pcre_xclass.c +0 -268
- data/vendor/libgit2/deps/pcre/pcreposix.c +0 -421
- data/vendor/libgit2/deps/pcre/pcreposix.h +0 -117
- data/vendor/libgit2/deps/pcre/ucp.h +0 -224
- data/vendor/libgit2/include/git2/cert.h +0 -135
- data/vendor/libgit2/include/git2/cred.h +0 -308
- data/vendor/libgit2/include/git2/sys/cred.h +0 -90
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- data/vendor/libgit2/src/config_snapshot.c +0 -206
- data/vendor/libgit2/src/errors.h +0 -81
- data/vendor/libgit2/src/hash/sha1.h +0 -38
- data/vendor/libgit2/src/hash/sha1/collisiondetect.h +0 -19
- data/vendor/libgit2/src/hash/sha1/common_crypto.h +0 -19
- data/vendor/libgit2/src/hash/sha1/openssl.h +0 -19
- data/vendor/libgit2/src/net.c +0 -184
- data/vendor/libgit2/src/net.h +0 -36
- data/vendor/libgit2/src/regexp.c +0 -221
- data/vendor/libgit2/src/regexp.h +0 -97
- data/vendor/libgit2/src/transports/auth_ntlm.c +0 -223
- data/vendor/libgit2/src/transports/auth_ntlm.h +0 -35
- data/vendor/libgit2/src/wildmatch.c +0 -320
- data/vendor/libgit2/src/wildmatch.h +0 -23
- data/vendor/libgit2/src/win32/w32_common.h +0 -39
@@ -1,224 +0,0 @@
|
|
1
|
-
/*************************************************
|
2
|
-
* Unicode Property Table handler *
|
3
|
-
*************************************************/
|
4
|
-
|
5
|
-
#ifndef _UCP_H
|
6
|
-
#define _UCP_H
|
7
|
-
|
8
|
-
/* This file contains definitions of the property values that are returned by
|
9
|
-
the UCD access macros. New values that are added for new releases of Unicode
|
10
|
-
should always be at the end of each enum, for backwards compatibility.
|
11
|
-
|
12
|
-
IMPORTANT: Note also that the specific numeric values of the enums have to be
|
13
|
-
the same as the values that are generated by the maint/MultiStage2.py script,
|
14
|
-
where the equivalent property descriptive names are listed in vectors.
|
15
|
-
|
16
|
-
ALSO: The specific values of the first two enums are assumed for the table
|
17
|
-
called catposstab in pcre_compile.c. */
|
18
|
-
|
19
|
-
/* These are the general character categories. */
|
20
|
-
|
21
|
-
enum {
|
22
|
-
ucp_C, /* Other */
|
23
|
-
ucp_L, /* Letter */
|
24
|
-
ucp_M, /* Mark */
|
25
|
-
ucp_N, /* Number */
|
26
|
-
ucp_P, /* Punctuation */
|
27
|
-
ucp_S, /* Symbol */
|
28
|
-
ucp_Z /* Separator */
|
29
|
-
};
|
30
|
-
|
31
|
-
/* These are the particular character categories. */
|
32
|
-
|
33
|
-
enum {
|
34
|
-
ucp_Cc, /* Control */
|
35
|
-
ucp_Cf, /* Format */
|
36
|
-
ucp_Cn, /* Unassigned */
|
37
|
-
ucp_Co, /* Private use */
|
38
|
-
ucp_Cs, /* Surrogate */
|
39
|
-
ucp_Ll, /* Lower case letter */
|
40
|
-
ucp_Lm, /* Modifier letter */
|
41
|
-
ucp_Lo, /* Other letter */
|
42
|
-
ucp_Lt, /* Title case letter */
|
43
|
-
ucp_Lu, /* Upper case letter */
|
44
|
-
ucp_Mc, /* Spacing mark */
|
45
|
-
ucp_Me, /* Enclosing mark */
|
46
|
-
ucp_Mn, /* Non-spacing mark */
|
47
|
-
ucp_Nd, /* Decimal number */
|
48
|
-
ucp_Nl, /* Letter number */
|
49
|
-
ucp_No, /* Other number */
|
50
|
-
ucp_Pc, /* Connector punctuation */
|
51
|
-
ucp_Pd, /* Dash punctuation */
|
52
|
-
ucp_Pe, /* Close punctuation */
|
53
|
-
ucp_Pf, /* Final punctuation */
|
54
|
-
ucp_Pi, /* Initial punctuation */
|
55
|
-
ucp_Po, /* Other punctuation */
|
56
|
-
ucp_Ps, /* Open punctuation */
|
57
|
-
ucp_Sc, /* Currency symbol */
|
58
|
-
ucp_Sk, /* Modifier symbol */
|
59
|
-
ucp_Sm, /* Mathematical symbol */
|
60
|
-
ucp_So, /* Other symbol */
|
61
|
-
ucp_Zl, /* Line separator */
|
62
|
-
ucp_Zp, /* Paragraph separator */
|
63
|
-
ucp_Zs /* Space separator */
|
64
|
-
};
|
65
|
-
|
66
|
-
/* These are grapheme break properties. Note that the code for processing them
|
67
|
-
assumes that the values are less than 16. If more values are added that take
|
68
|
-
the number to 16 or more, the code will have to be rewritten. */
|
69
|
-
|
70
|
-
enum {
|
71
|
-
ucp_gbCR, /* 0 */
|
72
|
-
ucp_gbLF, /* 1 */
|
73
|
-
ucp_gbControl, /* 2 */
|
74
|
-
ucp_gbExtend, /* 3 */
|
75
|
-
ucp_gbPrepend, /* 4 */
|
76
|
-
ucp_gbSpacingMark, /* 5 */
|
77
|
-
ucp_gbL, /* 6 Hangul syllable type L */
|
78
|
-
ucp_gbV, /* 7 Hangul syllable type V */
|
79
|
-
ucp_gbT, /* 8 Hangul syllable type T */
|
80
|
-
ucp_gbLV, /* 9 Hangul syllable type LV */
|
81
|
-
ucp_gbLVT, /* 10 Hangul syllable type LVT */
|
82
|
-
ucp_gbRegionalIndicator, /* 11 */
|
83
|
-
ucp_gbOther /* 12 */
|
84
|
-
};
|
85
|
-
|
86
|
-
/* These are the script identifications. */
|
87
|
-
|
88
|
-
enum {
|
89
|
-
ucp_Arabic,
|
90
|
-
ucp_Armenian,
|
91
|
-
ucp_Bengali,
|
92
|
-
ucp_Bopomofo,
|
93
|
-
ucp_Braille,
|
94
|
-
ucp_Buginese,
|
95
|
-
ucp_Buhid,
|
96
|
-
ucp_Canadian_Aboriginal,
|
97
|
-
ucp_Cherokee,
|
98
|
-
ucp_Common,
|
99
|
-
ucp_Coptic,
|
100
|
-
ucp_Cypriot,
|
101
|
-
ucp_Cyrillic,
|
102
|
-
ucp_Deseret,
|
103
|
-
ucp_Devanagari,
|
104
|
-
ucp_Ethiopic,
|
105
|
-
ucp_Georgian,
|
106
|
-
ucp_Glagolitic,
|
107
|
-
ucp_Gothic,
|
108
|
-
ucp_Greek,
|
109
|
-
ucp_Gujarati,
|
110
|
-
ucp_Gurmukhi,
|
111
|
-
ucp_Han,
|
112
|
-
ucp_Hangul,
|
113
|
-
ucp_Hanunoo,
|
114
|
-
ucp_Hebrew,
|
115
|
-
ucp_Hiragana,
|
116
|
-
ucp_Inherited,
|
117
|
-
ucp_Kannada,
|
118
|
-
ucp_Katakana,
|
119
|
-
ucp_Kharoshthi,
|
120
|
-
ucp_Khmer,
|
121
|
-
ucp_Lao,
|
122
|
-
ucp_Latin,
|
123
|
-
ucp_Limbu,
|
124
|
-
ucp_Linear_B,
|
125
|
-
ucp_Malayalam,
|
126
|
-
ucp_Mongolian,
|
127
|
-
ucp_Myanmar,
|
128
|
-
ucp_New_Tai_Lue,
|
129
|
-
ucp_Ogham,
|
130
|
-
ucp_Old_Italic,
|
131
|
-
ucp_Old_Persian,
|
132
|
-
ucp_Oriya,
|
133
|
-
ucp_Osmanya,
|
134
|
-
ucp_Runic,
|
135
|
-
ucp_Shavian,
|
136
|
-
ucp_Sinhala,
|
137
|
-
ucp_Syloti_Nagri,
|
138
|
-
ucp_Syriac,
|
139
|
-
ucp_Tagalog,
|
140
|
-
ucp_Tagbanwa,
|
141
|
-
ucp_Tai_Le,
|
142
|
-
ucp_Tamil,
|
143
|
-
ucp_Telugu,
|
144
|
-
ucp_Thaana,
|
145
|
-
ucp_Thai,
|
146
|
-
ucp_Tibetan,
|
147
|
-
ucp_Tifinagh,
|
148
|
-
ucp_Ugaritic,
|
149
|
-
ucp_Yi,
|
150
|
-
/* New for Unicode 5.0: */
|
151
|
-
ucp_Balinese,
|
152
|
-
ucp_Cuneiform,
|
153
|
-
ucp_Nko,
|
154
|
-
ucp_Phags_Pa,
|
155
|
-
ucp_Phoenician,
|
156
|
-
/* New for Unicode 5.1: */
|
157
|
-
ucp_Carian,
|
158
|
-
ucp_Cham,
|
159
|
-
ucp_Kayah_Li,
|
160
|
-
ucp_Lepcha,
|
161
|
-
ucp_Lycian,
|
162
|
-
ucp_Lydian,
|
163
|
-
ucp_Ol_Chiki,
|
164
|
-
ucp_Rejang,
|
165
|
-
ucp_Saurashtra,
|
166
|
-
ucp_Sundanese,
|
167
|
-
ucp_Vai,
|
168
|
-
/* New for Unicode 5.2: */
|
169
|
-
ucp_Avestan,
|
170
|
-
ucp_Bamum,
|
171
|
-
ucp_Egyptian_Hieroglyphs,
|
172
|
-
ucp_Imperial_Aramaic,
|
173
|
-
ucp_Inscriptional_Pahlavi,
|
174
|
-
ucp_Inscriptional_Parthian,
|
175
|
-
ucp_Javanese,
|
176
|
-
ucp_Kaithi,
|
177
|
-
ucp_Lisu,
|
178
|
-
ucp_Meetei_Mayek,
|
179
|
-
ucp_Old_South_Arabian,
|
180
|
-
ucp_Old_Turkic,
|
181
|
-
ucp_Samaritan,
|
182
|
-
ucp_Tai_Tham,
|
183
|
-
ucp_Tai_Viet,
|
184
|
-
/* New for Unicode 6.0.0: */
|
185
|
-
ucp_Batak,
|
186
|
-
ucp_Brahmi,
|
187
|
-
ucp_Mandaic,
|
188
|
-
/* New for Unicode 6.1.0: */
|
189
|
-
ucp_Chakma,
|
190
|
-
ucp_Meroitic_Cursive,
|
191
|
-
ucp_Meroitic_Hieroglyphs,
|
192
|
-
ucp_Miao,
|
193
|
-
ucp_Sharada,
|
194
|
-
ucp_Sora_Sompeng,
|
195
|
-
ucp_Takri,
|
196
|
-
/* New for Unicode 7.0.0: */
|
197
|
-
ucp_Bassa_Vah,
|
198
|
-
ucp_Caucasian_Albanian,
|
199
|
-
ucp_Duployan,
|
200
|
-
ucp_Elbasan,
|
201
|
-
ucp_Grantha,
|
202
|
-
ucp_Khojki,
|
203
|
-
ucp_Khudawadi,
|
204
|
-
ucp_Linear_A,
|
205
|
-
ucp_Mahajani,
|
206
|
-
ucp_Manichaean,
|
207
|
-
ucp_Mende_Kikakui,
|
208
|
-
ucp_Modi,
|
209
|
-
ucp_Mro,
|
210
|
-
ucp_Nabataean,
|
211
|
-
ucp_Old_North_Arabian,
|
212
|
-
ucp_Old_Permic,
|
213
|
-
ucp_Pahawh_Hmong,
|
214
|
-
ucp_Palmyrene,
|
215
|
-
ucp_Psalter_Pahlavi,
|
216
|
-
ucp_Pau_Cin_Hau,
|
217
|
-
ucp_Siddham,
|
218
|
-
ucp_Tirhuta,
|
219
|
-
ucp_Warang_Citi
|
220
|
-
};
|
221
|
-
|
222
|
-
#endif
|
223
|
-
|
224
|
-
/* End of ucp.h */
|
@@ -1,135 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
-
*
|
4
|
-
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
-
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
-
*/
|
7
|
-
#ifndef INCLUDE_git_cert_h__
|
8
|
-
#define INCLUDE_git_cert_h__
|
9
|
-
|
10
|
-
#include "common.h"
|
11
|
-
|
12
|
-
/**
|
13
|
-
* @file git2/cert.h
|
14
|
-
* @brief Git certificate objects
|
15
|
-
* @defgroup git_cert Certificate objects
|
16
|
-
* @ingroup Git
|
17
|
-
* @{
|
18
|
-
*/
|
19
|
-
GIT_BEGIN_DECL
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Type of host certificate structure that is passed to the check callback
|
23
|
-
*/
|
24
|
-
typedef enum git_cert_t {
|
25
|
-
/**
|
26
|
-
* No information about the certificate is available. This may
|
27
|
-
* happen when using curl.
|
28
|
-
*/
|
29
|
-
GIT_CERT_NONE,
|
30
|
-
/**
|
31
|
-
* The `data` argument to the callback will be a pointer to
|
32
|
-
* the DER-encoded data.
|
33
|
-
*/
|
34
|
-
GIT_CERT_X509,
|
35
|
-
/**
|
36
|
-
* The `data` argument to the callback will be a pointer to a
|
37
|
-
* `git_cert_hostkey` structure.
|
38
|
-
*/
|
39
|
-
GIT_CERT_HOSTKEY_LIBSSH2,
|
40
|
-
/**
|
41
|
-
* The `data` argument to the callback will be a pointer to a
|
42
|
-
* `git_strarray` with `name:content` strings containing
|
43
|
-
* information about the certificate. This is used when using
|
44
|
-
* curl.
|
45
|
-
*/
|
46
|
-
GIT_CERT_STRARRAY,
|
47
|
-
} git_cert_t;
|
48
|
-
|
49
|
-
/**
|
50
|
-
* Parent type for `git_cert_hostkey` and `git_cert_x509`.
|
51
|
-
*/
|
52
|
-
struct git_cert {
|
53
|
-
/**
|
54
|
-
* Type of certificate. A `GIT_CERT_` value.
|
55
|
-
*/
|
56
|
-
git_cert_t cert_type;
|
57
|
-
};
|
58
|
-
|
59
|
-
/**
|
60
|
-
* Callback for the user's custom certificate checks.
|
61
|
-
*
|
62
|
-
* @param cert The host certificate
|
63
|
-
* @param valid Whether the libgit2 checks (OpenSSL or WinHTTP) think
|
64
|
-
* this certificate is valid
|
65
|
-
* @param host Hostname of the host libgit2 connected to
|
66
|
-
* @param payload Payload provided by the caller
|
67
|
-
* @return 0 to proceed with the connection, < 0 to fail the connection
|
68
|
-
* or > 0 to indicate that the callback refused to act and that
|
69
|
-
* the existing validity determination should be honored
|
70
|
-
*/
|
71
|
-
typedef int GIT_CALLBACK(git_transport_certificate_check_cb)(git_cert *cert, int valid, const char *host, void *payload);
|
72
|
-
|
73
|
-
/**
|
74
|
-
* Type of SSH host fingerprint
|
75
|
-
*/
|
76
|
-
typedef enum {
|
77
|
-
/** MD5 is available */
|
78
|
-
GIT_CERT_SSH_MD5 = (1 << 0),
|
79
|
-
/** SHA-1 is available */
|
80
|
-
GIT_CERT_SSH_SHA1 = (1 << 1),
|
81
|
-
/** SHA-256 is available */
|
82
|
-
GIT_CERT_SSH_SHA256 = (1 << 2),
|
83
|
-
} git_cert_ssh_t;
|
84
|
-
|
85
|
-
/**
|
86
|
-
* Hostkey information taken from libssh2
|
87
|
-
*/
|
88
|
-
typedef struct {
|
89
|
-
git_cert parent; /**< The parent cert */
|
90
|
-
|
91
|
-
/**
|
92
|
-
* A hostkey type from libssh2, either
|
93
|
-
* `GIT_CERT_SSH_MD5` or `GIT_CERT_SSH_SHA1`
|
94
|
-
*/
|
95
|
-
git_cert_ssh_t type;
|
96
|
-
|
97
|
-
/**
|
98
|
-
* Hostkey hash. If type has `GIT_CERT_SSH_MD5` set, this will
|
99
|
-
* have the MD5 hash of the hostkey.
|
100
|
-
*/
|
101
|
-
unsigned char hash_md5[16];
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Hostkey hash. If type has `GIT_CERT_SSH_SHA1` set, this will
|
105
|
-
* have the SHA-1 hash of the hostkey.
|
106
|
-
*/
|
107
|
-
unsigned char hash_sha1[20];
|
108
|
-
|
109
|
-
/**
|
110
|
-
* Hostkey hash. If type has `GIT_CERT_SSH_SHA256` set, this will
|
111
|
-
* have the SHA-256 hash of the hostkey.
|
112
|
-
*/
|
113
|
-
unsigned char hash_sha256[32];
|
114
|
-
} git_cert_hostkey;
|
115
|
-
|
116
|
-
/**
|
117
|
-
* X.509 certificate information
|
118
|
-
*/
|
119
|
-
typedef struct {
|
120
|
-
git_cert parent; /**< The parent cert */
|
121
|
-
|
122
|
-
/**
|
123
|
-
* Pointer to the X.509 certificate data
|
124
|
-
*/
|
125
|
-
void *data;
|
126
|
-
|
127
|
-
/**
|
128
|
-
* Length of the memory block pointed to by `data`.
|
129
|
-
*/
|
130
|
-
size_t len;
|
131
|
-
} git_cert_x509;
|
132
|
-
|
133
|
-
/** @} */
|
134
|
-
GIT_END_DECL
|
135
|
-
#endif
|
@@ -1,308 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
-
*
|
4
|
-
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
-
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
-
*/
|
7
|
-
#ifndef INCLUDE_git_cred_h__
|
8
|
-
#define INCLUDE_git_cred_h__
|
9
|
-
|
10
|
-
#include "common.h"
|
11
|
-
|
12
|
-
/**
|
13
|
-
* @file git2/cred.h
|
14
|
-
* @brief Git authentication & credential management
|
15
|
-
* @defgroup git_cred Authentication & credential management
|
16
|
-
* @ingroup Git
|
17
|
-
* @{
|
18
|
-
*/
|
19
|
-
GIT_BEGIN_DECL
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Supported credential types
|
23
|
-
*
|
24
|
-
* This represents the various types of authentication methods supported by
|
25
|
-
* the library.
|
26
|
-
*/
|
27
|
-
typedef enum {
|
28
|
-
/**
|
29
|
-
* A vanilla user/password request
|
30
|
-
* @see git_cred_userpass_plaintext_new
|
31
|
-
*/
|
32
|
-
GIT_CREDTYPE_USERPASS_PLAINTEXT = (1u << 0),
|
33
|
-
|
34
|
-
/**
|
35
|
-
* An SSH key-based authentication request
|
36
|
-
* @see git_cred_ssh_key_new
|
37
|
-
*/
|
38
|
-
GIT_CREDTYPE_SSH_KEY = (1u << 1),
|
39
|
-
|
40
|
-
/**
|
41
|
-
* An SSH key-based authentication request, with a custom signature
|
42
|
-
* @see git_cred_ssh_custom_new
|
43
|
-
*/
|
44
|
-
GIT_CREDTYPE_SSH_CUSTOM = (1u << 2),
|
45
|
-
|
46
|
-
/**
|
47
|
-
* An NTLM/Negotiate-based authentication request.
|
48
|
-
* @see git_cred_default
|
49
|
-
*/
|
50
|
-
GIT_CREDTYPE_DEFAULT = (1u << 3),
|
51
|
-
|
52
|
-
/**
|
53
|
-
* An SSH interactive authentication request
|
54
|
-
* @see git_cred_ssh_interactive_new
|
55
|
-
*/
|
56
|
-
GIT_CREDTYPE_SSH_INTERACTIVE = (1u << 4),
|
57
|
-
|
58
|
-
/**
|
59
|
-
* Username-only authentication request
|
60
|
-
*
|
61
|
-
* Used as a pre-authentication step if the underlying transport
|
62
|
-
* (eg. SSH, with no username in its URL) does not know which username
|
63
|
-
* to use.
|
64
|
-
*
|
65
|
-
* @see git_cred_username_new
|
66
|
-
*/
|
67
|
-
GIT_CREDTYPE_USERNAME = (1u << 5),
|
68
|
-
|
69
|
-
/**
|
70
|
-
* An SSH key-based authentication request
|
71
|
-
*
|
72
|
-
* Allows credentials to be read from memory instead of files.
|
73
|
-
* Note that because of differences in crypto backend support, it might
|
74
|
-
* not be functional.
|
75
|
-
*
|
76
|
-
* @see git_cred_ssh_key_memory_new
|
77
|
-
*/
|
78
|
-
GIT_CREDTYPE_SSH_MEMORY = (1u << 6),
|
79
|
-
} git_credtype_t;
|
80
|
-
|
81
|
-
/**
|
82
|
-
* The base structure for all credential types
|
83
|
-
*/
|
84
|
-
typedef struct git_cred git_cred;
|
85
|
-
|
86
|
-
typedef struct git_cred_userpass_plaintext git_cred_userpass_plaintext;
|
87
|
-
|
88
|
-
/** Username-only credential information */
|
89
|
-
typedef struct git_cred_username git_cred_username;
|
90
|
-
|
91
|
-
/** A key for NTLM/Kerberos "default" credentials */
|
92
|
-
typedef struct git_cred git_cred_default;
|
93
|
-
|
94
|
-
/**
|
95
|
-
* A ssh key from disk
|
96
|
-
*/
|
97
|
-
typedef struct git_cred_ssh_key git_cred_ssh_key;
|
98
|
-
|
99
|
-
/**
|
100
|
-
* Keyboard-interactive based ssh authentication
|
101
|
-
*/
|
102
|
-
typedef struct git_cred_ssh_interactive git_cred_ssh_interactive;
|
103
|
-
|
104
|
-
/**
|
105
|
-
* A key with a custom signature function
|
106
|
-
*/
|
107
|
-
typedef struct git_cred_ssh_custom git_cred_ssh_custom;
|
108
|
-
|
109
|
-
/**
|
110
|
-
* Credential acquisition callback.
|
111
|
-
*
|
112
|
-
* This callback is usually involved any time another system might need
|
113
|
-
* authentication. As such, you are expected to provide a valid git_cred
|
114
|
-
* object back, depending on allowed_types (a git_credtype_t bitmask).
|
115
|
-
*
|
116
|
-
* Note that most authentication details are your responsibility - this
|
117
|
-
* callback will be called until the authentication succeeds, or you report
|
118
|
-
* an error. As such, it's easy to get in a loop if you fail to stop providing
|
119
|
-
* the same incorrect credentials.
|
120
|
-
*
|
121
|
-
* @param cred The newly created credential object.
|
122
|
-
* @param url The resource for which we are demanding a credential.
|
123
|
-
* @param username_from_url The username that was embedded in a "user\@host"
|
124
|
-
* remote url, or NULL if not included.
|
125
|
-
* @param allowed_types A bitmask stating which cred types are OK to return.
|
126
|
-
* @param payload The payload provided when specifying this callback.
|
127
|
-
* @return 0 for success, < 0 to indicate an error, > 0 to indicate
|
128
|
-
* no credential was acquired
|
129
|
-
*/
|
130
|
-
typedef int GIT_CALLBACK(git_cred_acquire_cb)(
|
131
|
-
git_cred **cred,
|
132
|
-
const char *url,
|
133
|
-
const char *username_from_url,
|
134
|
-
unsigned int allowed_types,
|
135
|
-
void *payload);
|
136
|
-
|
137
|
-
/**
|
138
|
-
* Free a credential.
|
139
|
-
*
|
140
|
-
* This is only necessary if you own the object; that is, if you are a
|
141
|
-
* transport.
|
142
|
-
*
|
143
|
-
* @param cred the object to free
|
144
|
-
*/
|
145
|
-
GIT_EXTERN(void) git_cred_free(git_cred *cred);
|
146
|
-
|
147
|
-
/**
|
148
|
-
* Check whether a credential object contains username information.
|
149
|
-
*
|
150
|
-
* @param cred object to check
|
151
|
-
* @return 1 if the credential object has non-NULL username, 0 otherwise
|
152
|
-
*/
|
153
|
-
GIT_EXTERN(int) git_cred_has_username(git_cred *cred);
|
154
|
-
|
155
|
-
/**
|
156
|
-
* Return the username associated with a credential object.
|
157
|
-
*
|
158
|
-
* @param cred object to check
|
159
|
-
* @return the credential username, or NULL if not applicable
|
160
|
-
*/
|
161
|
-
GIT_EXTERN(const char *) git_cred_get_username(git_cred *cred);
|
162
|
-
|
163
|
-
/**
|
164
|
-
* Create a new plain-text username and password credential object.
|
165
|
-
* The supplied credential parameter will be internally duplicated.
|
166
|
-
*
|
167
|
-
* @param out The newly created credential object.
|
168
|
-
* @param username The username of the credential.
|
169
|
-
* @param password The password of the credential.
|
170
|
-
* @return 0 for success or an error code for failure
|
171
|
-
*/
|
172
|
-
GIT_EXTERN(int) git_cred_userpass_plaintext_new(
|
173
|
-
git_cred **out,
|
174
|
-
const char *username,
|
175
|
-
const char *password);
|
176
|
-
|
177
|
-
/**
|
178
|
-
* Create a "default" credential usable for Negotiate mechanisms like NTLM
|
179
|
-
* or Kerberos authentication.
|
180
|
-
*
|
181
|
-
* @return 0 for success or an error code for failure
|
182
|
-
*/
|
183
|
-
GIT_EXTERN(int) git_cred_default_new(git_cred **out);
|
184
|
-
|
185
|
-
/**
|
186
|
-
* Create a credential to specify a username.
|
187
|
-
*
|
188
|
-
* This is used with ssh authentication to query for the username if
|
189
|
-
* none is specified in the url.
|
190
|
-
*/
|
191
|
-
GIT_EXTERN(int) git_cred_username_new(git_cred **cred, const char *username);
|
192
|
-
|
193
|
-
/**
|
194
|
-
* Create a new passphrase-protected ssh key credential object.
|
195
|
-
* The supplied credential parameter will be internally duplicated.
|
196
|
-
*
|
197
|
-
* @param out The newly created credential object.
|
198
|
-
* @param username username to use to authenticate
|
199
|
-
* @param publickey The path to the public key of the credential.
|
200
|
-
* @param privatekey The path to the private key of the credential.
|
201
|
-
* @param passphrase The passphrase of the credential.
|
202
|
-
* @return 0 for success or an error code for failure
|
203
|
-
*/
|
204
|
-
GIT_EXTERN(int) git_cred_ssh_key_new(
|
205
|
-
git_cred **out,
|
206
|
-
const char *username,
|
207
|
-
const char *publickey,
|
208
|
-
const char *privatekey,
|
209
|
-
const char *passphrase);
|
210
|
-
|
211
|
-
/**
|
212
|
-
* Create a new ssh key credential object reading the keys from memory.
|
213
|
-
*
|
214
|
-
* @param out The newly created credential object.
|
215
|
-
* @param username username to use to authenticate.
|
216
|
-
* @param publickey The public key of the credential.
|
217
|
-
* @param privatekey The private key of the credential.
|
218
|
-
* @param passphrase The passphrase of the credential.
|
219
|
-
* @return 0 for success or an error code for failure
|
220
|
-
*/
|
221
|
-
GIT_EXTERN(int) git_cred_ssh_key_memory_new(
|
222
|
-
git_cred **out,
|
223
|
-
const char *username,
|
224
|
-
const char *publickey,
|
225
|
-
const char *privatekey,
|
226
|
-
const char *passphrase);
|
227
|
-
|
228
|
-
/*
|
229
|
-
* If the user hasn't included libssh2.h before git2.h, we need to
|
230
|
-
* define a few types for the callback signatures.
|
231
|
-
*/
|
232
|
-
#ifndef LIBSSH2_VERSION
|
233
|
-
typedef struct _LIBSSH2_SESSION LIBSSH2_SESSION;
|
234
|
-
typedef struct _LIBSSH2_USERAUTH_KBDINT_PROMPT LIBSSH2_USERAUTH_KBDINT_PROMPT;
|
235
|
-
typedef struct _LIBSSH2_USERAUTH_KBDINT_RESPONSE LIBSSH2_USERAUTH_KBDINT_RESPONSE;
|
236
|
-
#endif
|
237
|
-
|
238
|
-
typedef void GIT_CALLBACK(git_cred_ssh_interactive_cb)(
|
239
|
-
const char *name,
|
240
|
-
int name_len,
|
241
|
-
const char *instruction, int instruction_len,
|
242
|
-
int num_prompts, const LIBSSH2_USERAUTH_KBDINT_PROMPT *prompts,
|
243
|
-
LIBSSH2_USERAUTH_KBDINT_RESPONSE *responses,
|
244
|
-
void **abstract);
|
245
|
-
|
246
|
-
|
247
|
-
/**
|
248
|
-
* Create a new ssh keyboard-interactive based credential object.
|
249
|
-
* The supplied credential parameter will be internally duplicated.
|
250
|
-
*
|
251
|
-
* @param username Username to use to authenticate.
|
252
|
-
* @param prompt_callback The callback method used for prompts.
|
253
|
-
* @param payload Additional data to pass to the callback.
|
254
|
-
* @return 0 for success or an error code for failure.
|
255
|
-
*/
|
256
|
-
GIT_EXTERN(int) git_cred_ssh_interactive_new(
|
257
|
-
git_cred **out,
|
258
|
-
const char *username,
|
259
|
-
git_cred_ssh_interactive_cb prompt_callback,
|
260
|
-
void *payload);
|
261
|
-
|
262
|
-
/**
|
263
|
-
* Create a new ssh key credential object used for querying an ssh-agent.
|
264
|
-
* The supplied credential parameter will be internally duplicated.
|
265
|
-
*
|
266
|
-
* @param out The newly created credential object.
|
267
|
-
* @param username username to use to authenticate
|
268
|
-
* @return 0 for success or an error code for failure
|
269
|
-
*/
|
270
|
-
GIT_EXTERN(int) git_cred_ssh_key_from_agent(
|
271
|
-
git_cred **out,
|
272
|
-
const char *username);
|
273
|
-
|
274
|
-
typedef int GIT_CALLBACK(git_cred_sign_cb)(
|
275
|
-
LIBSSH2_SESSION *session,
|
276
|
-
unsigned char **sig, size_t *sig_len,
|
277
|
-
const unsigned char *data, size_t data_len,
|
278
|
-
void **abstract);
|
279
|
-
|
280
|
-
/**
|
281
|
-
* Create an ssh key credential with a custom signing function.
|
282
|
-
*
|
283
|
-
* This lets you use your own function to sign the challenge.
|
284
|
-
*
|
285
|
-
* This function and its credential type is provided for completeness
|
286
|
-
* and wraps `libssh2_userauth_publickey()`, which is undocumented.
|
287
|
-
*
|
288
|
-
* The supplied credential parameter will be internally duplicated.
|
289
|
-
*
|
290
|
-
* @param out The newly created credential object.
|
291
|
-
* @param username username to use to authenticate
|
292
|
-
* @param publickey The bytes of the public key.
|
293
|
-
* @param publickey_len The length of the public key in bytes.
|
294
|
-
* @param sign_callback The callback method to sign the data during the challenge.
|
295
|
-
* @param payload Additional data to pass to the callback.
|
296
|
-
* @return 0 for success or an error code for failure
|
297
|
-
*/
|
298
|
-
GIT_EXTERN(int) git_cred_ssh_custom_new(
|
299
|
-
git_cred **out,
|
300
|
-
const char *username,
|
301
|
-
const char *publickey,
|
302
|
-
size_t publickey_len,
|
303
|
-
git_cred_sign_cb sign_callback,
|
304
|
-
void *payload);
|
305
|
-
|
306
|
-
/** @} */
|
307
|
-
GIT_END_DECL
|
308
|
-
#endif
|