/opt/imh-python/lib/python3.9/site-packages/pygit2/decl
NameSizeModeActions
attr.h4510644editdlrm
blame.h10510644editdlrm
buffer.h1030644editdlrm
callbacks.h9630644editdlrm
checkout.h18260644editdlrm
clone.h9520644editdlrm
common.h1880644editdlrm
config.h21490644editdlrm
describe.h12280644editdlrm
diff.h21140644editdlrm
errors.h9370644editdlrm
graph.h1280644editdlrm
index.h23310644editdlrm
indexer.h3560644editdlrm
merge.h21390644editdlrm
net.h840644editdlrm
oid.h3090644editdlrm
pack.h7470644editdlrm
proxy.h4110644editdlrm
refspec.h6150644editdlrm
remote.h45290644editdlrm
repository.h21350644editdlrm
revert.h1830644editdlrm
stash.h16880644editdlrm
strarray.h1240644editdlrm
submodule.h12700644editdlrm
transport.h15200644editdlrm
types.h15540644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/pygit2/decl/transport.h (1520B)
typedef struct git_credential git_credential; typedef enum { GIT_CREDENTIAL_USERPASS_PLAINTEXT = (1u << 0), GIT_CREDENTIAL_SSH_KEY = (1u << 1), GIT_CREDENTIAL_SSH_CUSTOM = (1u << 2), GIT_CREDENTIAL_DEFAULT = (1u << 3), GIT_CREDENTIAL_SSH_INTERACTIVE = (1u << 4), GIT_CREDENTIAL_USERNAME = (1u << 5), GIT_CREDENTIAL_SSH_MEMORY = (1u << 6), } git_credential_t; typedef enum { GIT_CERT_SSH_MD5 = 1, GIT_CERT_SSH_SHA1 = 2, } git_cert_ssh_t; typedef struct { git_cert parent; git_cert_ssh_t type; unsigned char hash_md5[16]; unsigned char hash_sha1[20]; } git_cert_hostkey; typedef struct { git_cert parent; void *data; size_t len; } git_cert_x509; typedef int (*git_credential_acquire_cb)( git_credential **out, const char *url, const char *username_from_url, unsigned int allowed_types, void *payload); typedef int (*git_transport_cb)(git_transport **out, git_remote *owner, void *param); int git_credential_username_new(git_credential **out, const char *username); int git_credential_userpass_plaintext_new( git_credential **out, const char *username, const char *password); int git_credential_ssh_key_new( git_credential **out, const char *username, const char *publickey, const char *privatekey, const char *passphrase); int git_credential_ssh_key_from_agent( git_credential **out, const char *username); int git_credential_ssh_key_memory_new( git_credential **out, const char *username, const char *publickey, const char *privatekey, const char *passphrase);