├── .appveyor.yml ├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── COPYING ├── Changelog.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── _setup_libssh.py ├── ci ├── appveyor │ ├── build_krb.bat │ ├── build_ssh.bat │ ├── build_zlib.bat │ ├── fix_version.py │ ├── import_test.py │ └── pypi_upload.py ├── build-manylinux.sh ├── build-wheels.sh ├── docker │ └── manylinux │ │ ├── Dockerfile.2014_x86_64 │ │ ├── Dockerfile.aarch64 │ │ ├── Dockerfile.aarch64_2_24 │ │ ├── Dockerfile.aarch64_2_28 │ │ ├── Dockerfile.manylinux_2_24_x86_64 │ │ └── Dockerfile.manylinux_2_28_x86_64 ├── integration_tests │ ├── __init__.py │ ├── base_case.py │ ├── embedded_server │ │ ├── __init__.py │ │ ├── authorized_keys │ │ ├── ca_host_key │ │ ├── ca_host_key-cert.pub │ │ ├── ca_host_key.pub │ │ ├── ca_user_key │ │ ├── ca_user_key.pub │ │ ├── known_hosts │ │ ├── openssh.py │ │ ├── principals.tmpl │ │ ├── rsa.key │ │ └── sshd_config.tmpl │ ├── test_channel.py │ ├── test_session.py │ ├── test_sftp.py │ ├── unit_test_cert_key │ ├── unit_test_cert_key.pub │ ├── unit_test_key │ └── unit_test_key.pub └── osx-wheel.sh ├── doc ├── Changelog.rst ├── Makefile ├── api.rst ├── callbacks.rst ├── channel.rst ├── conf.py ├── connector.rst ├── event.rst ├── exceptions.rst ├── index.rst ├── installation.rst ├── key.rst ├── keytypes.rst ├── make.bat ├── options.rst ├── requirements.txt ├── scp.rst ├── session.rst ├── sftp.rst ├── sftp_attributes.rst ├── sftp_handles.rst ├── sftp_statvfs.rst └── utils.rst ├── examples ├── exec.py └── keygen.py ├── krb5-1.21.3 ├── .github │ └── workflows │ │ ├── build.yml │ │ └── doc.yml ├── NOTICE ├── README └── src │ ├── Makefile.in │ ├── aclocal.m4 │ ├── appl │ ├── Makefile.in │ ├── deps │ ├── gss-sample │ │ ├── Makefile.in │ │ ├── README │ │ ├── deps │ │ ├── gss-client.c │ │ ├── gss-misc.c │ │ ├── gss-misc.h │ │ ├── gss-server.c │ │ └── t_gss_sample.py │ ├── sample │ │ ├── Makefile.in │ │ ├── deps │ │ ├── sample.h │ │ ├── sclient │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── sclient.c │ │ ├── sserver │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── sserver.c │ │ └── t_sample.py │ ├── simple │ │ ├── Makefile.in │ │ ├── client │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── sim_client.c │ │ ├── deps │ │ ├── server │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── sim_server.c │ │ ├── simple.h │ │ └── t_simple.py │ └── user_user │ │ ├── Makefile.in │ │ ├── client.c │ │ ├── deps │ │ ├── server.c │ │ └── t_user2user.py │ ├── build-tools │ ├── Makefile.in │ ├── deps │ ├── gssrpc.pc.in │ ├── kadm-client.pc.in │ ├── kadm-server.pc.in │ ├── kdb.pc.in │ ├── krb5-config.in │ ├── krb5-gssapi.pc.in │ ├── krb5.pc.in │ ├── mit-krb5-gssapi.pc.in │ ├── mit-krb5.pc.in │ └── t_krbconf │ ├── ccapi │ ├── Makefile.in │ ├── common │ │ ├── Makefile.in │ │ ├── cci_array_internal.c │ │ ├── cci_array_internal.h │ │ ├── cci_common.h │ │ ├── cci_cred_union.c │ │ ├── cci_cred_union.h │ │ ├── cci_debugging.c │ │ ├── cci_debugging.h │ │ ├── cci_identifier.c │ │ ├── cci_identifier.h │ │ ├── cci_message.c │ │ ├── cci_message.h │ │ ├── cci_os_debugging.h │ │ ├── cci_os_identifier.h │ │ ├── cci_types.h │ │ ├── unix │ │ │ └── Makefile.in │ │ └── win │ │ │ ├── OldCC │ │ │ ├── autolock.hxx │ │ │ ├── ccutil.cxx │ │ │ ├── ccutil.def │ │ │ ├── ccutils.c │ │ │ ├── ccutils.h │ │ │ ├── init.cxx │ │ │ ├── init.hxx │ │ │ ├── name.h │ │ │ ├── opts.cxx │ │ │ ├── opts.hxx │ │ │ ├── secure.cxx │ │ │ ├── secure.hxx │ │ │ ├── util.cxx │ │ │ └── util.h │ │ │ ├── cci_os_debugging.c │ │ │ ├── cci_os_identifier.c │ │ │ ├── ccs_reply.Acf │ │ │ ├── ccs_reply.Idl │ │ │ ├── ccs_request.Acf │ │ │ ├── ccs_request.idl │ │ │ ├── tls.c │ │ │ ├── tls.h │ │ │ ├── win-utils.c │ │ │ └── win-utils.h │ ├── deps │ ├── doc │ │ └── CCAPI-Windows-Design.html │ ├── lib │ │ ├── Makefile.in │ │ ├── ccapi.exports │ │ ├── ccapi_ccache.c │ │ ├── ccapi_ccache.h │ │ ├── ccapi_ccache_iterator.c │ │ ├── ccapi_ccache_iterator.h │ │ ├── ccapi_context.c │ │ ├── ccapi_context.h │ │ ├── ccapi_context_change_time.c │ │ ├── ccapi_context_change_time.h │ │ ├── ccapi_credentials.c │ │ ├── ccapi_credentials.h │ │ ├── ccapi_credentials_iterator.c │ │ ├── ccapi_credentials_iterator.h │ │ ├── ccapi_err.et │ │ ├── ccapi_ipc.c │ │ ├── ccapi_ipc.h │ │ ├── ccapi_os_ipc.h │ │ ├── ccapi_string.c │ │ ├── ccapi_string.h │ │ ├── ccapi_v2.c │ │ ├── ccapi_v2.exports │ │ ├── deps │ │ ├── libkrb5-ccapi.exports │ │ ├── unix │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── stubs.c │ │ └── win │ │ │ ├── Makefile.in │ │ │ ├── OldCC │ │ │ ├── ccapi.h │ │ │ ├── client.cxx │ │ │ └── client.h │ │ │ ├── WINCCAPI.sln │ │ │ ├── WINCCAPI.vcproj │ │ │ ├── ccapi_os_ipc.cxx │ │ │ ├── ccs_reply_proc.c │ │ │ ├── debug.exports │ │ │ ├── dllmain.cxx │ │ │ └── dllmain.h │ ├── server │ │ ├── Makefile.in │ │ ├── ccs_array.c │ │ ├── ccs_array.h │ │ ├── ccs_cache_collection.c │ │ ├── ccs_cache_collection.h │ │ ├── ccs_callback.c │ │ ├── ccs_callback.h │ │ ├── ccs_ccache.c │ │ ├── ccs_ccache.h │ │ ├── ccs_ccache_iterator.c │ │ ├── ccs_ccache_iterator.h │ │ ├── ccs_client.c │ │ ├── ccs_client.h │ │ ├── ccs_common.h │ │ ├── ccs_credentials.c │ │ ├── ccs_credentials.h │ │ ├── ccs_credentials_iterator.c │ │ ├── ccs_credentials_iterator.h │ │ ├── ccs_list.c │ │ ├── ccs_list.h │ │ ├── ccs_list_internal.c │ │ ├── ccs_list_internal.h │ │ ├── ccs_lock.c │ │ ├── ccs_lock.h │ │ ├── ccs_lock_state.c │ │ ├── ccs_lock_state.h │ │ ├── ccs_os_notify.h │ │ ├── ccs_os_pipe.h │ │ ├── ccs_os_server.h │ │ ├── ccs_pipe.c │ │ ├── ccs_pipe.h │ │ ├── ccs_server.c │ │ ├── ccs_server.h │ │ ├── ccs_types.h │ │ ├── deps │ │ ├── unix │ │ │ ├── Makefile.in │ │ │ └── deps │ │ └── win │ │ │ ├── Makefile.in │ │ │ ├── Server.sln │ │ │ ├── Server.vcproj │ │ │ ├── WorkItem.cpp │ │ │ ├── WorkQueue.cpp │ │ │ ├── WorkQueue.h │ │ │ ├── ccs_os_pipe.c │ │ │ ├── ccs_os_server.cpp │ │ │ ├── ccs_request_proc.c │ │ │ ├── ccs_win_pipe.c │ │ │ ├── ccs_win_pipe.h │ │ │ └── workitem.h │ └── test │ │ ├── Makefile.in │ │ ├── Makefile.w32 │ │ ├── Pingtest.sln │ │ ├── deps │ │ ├── main.c │ │ ├── pingtest.c │ │ ├── setlib.pl │ │ ├── simple_lock_test.c │ │ ├── test_cc_ccache_clear_kdc_time_offset.c │ │ ├── test_cc_ccache_compare.c │ │ ├── test_cc_ccache_destroy.c │ │ ├── test_cc_ccache_get_change_time.c │ │ ├── test_cc_ccache_get_credentials_version.c │ │ ├── test_cc_ccache_get_kdc_time_offset.c │ │ ├── test_cc_ccache_get_last_default_time.c │ │ ├── test_cc_ccache_get_name.c │ │ ├── test_cc_ccache_get_principal.c │ │ ├── test_cc_ccache_iterator_next.c │ │ ├── test_cc_ccache_move.c │ │ ├── test_cc_ccache_new_credentials_iterator.c │ │ ├── test_cc_ccache_release.c │ │ ├── test_cc_ccache_remove_credentials.c │ │ ├── test_cc_ccache_set_default.c │ │ ├── test_cc_ccache_set_kdc_time_offset.c │ │ ├── test_cc_ccache_set_principal.c │ │ ├── test_cc_ccache_store_credentials.c │ │ ├── test_cc_close.c │ │ ├── test_cc_context_compare.c │ │ ├── test_cc_context_create_ccache.c │ │ ├── test_cc_context_create_default_ccache.c │ │ ├── test_cc_context_create_new_ccache.c │ │ ├── test_cc_context_get_change_time.c │ │ ├── test_cc_context_get_default_ccache_name.c │ │ ├── test_cc_context_new_ccache_iterator.c │ │ ├── test_cc_context_open_ccache.c │ │ ├── test_cc_context_open_default_ccache.c │ │ ├── test_cc_context_release.c │ │ ├── test_cc_create.c │ │ ├── test_cc_credentials_iterator_next.c │ │ ├── test_cc_destroy.c │ │ ├── test_cc_get_NC_info.c │ │ ├── test_cc_get_change_time.c │ │ ├── test_cc_get_cred_version.c │ │ ├── test_cc_get_name.c │ │ ├── test_cc_get_principal.c │ │ ├── test_cc_initialize.c │ │ ├── test_cc_open.c │ │ ├── test_cc_remove_cred.c │ │ ├── test_cc_seq_fetch_NCs_begin.c │ │ ├── test_cc_seq_fetch_NCs_next.c │ │ ├── test_cc_seq_fetch_creds_begin.c │ │ ├── test_cc_seq_fetch_creds_next.c │ │ ├── test_cc_set_principal.c │ │ ├── test_cc_shutdown.c │ │ ├── test_cc_store.c │ │ ├── test_ccapi.bat │ │ ├── test_ccapi.sh │ │ ├── test_ccapi_ccache.c │ │ ├── test_ccapi_ccache.h │ │ ├── test_ccapi_check.c │ │ ├── test_ccapi_check.h │ │ ├── test_ccapi_constants.c │ │ ├── test_ccapi_constants.h │ │ ├── test_ccapi_context.c │ │ ├── test_ccapi_context.h │ │ ├── test_ccapi_globals.c │ │ ├── test_ccapi_globals.h │ │ ├── test_ccapi_iterators.c │ │ ├── test_ccapi_iterators.h │ │ ├── test_ccapi_log.c │ │ ├── test_ccapi_log.h │ │ ├── test_ccapi_util.c │ │ ├── test_ccapi_util.h │ │ ├── test_ccapi_v2.c │ │ ├── test_ccapi_v2.h │ │ └── test_constants.c │ ├── clients │ ├── Makefile.in │ ├── deps │ ├── kcpytkt │ │ ├── Makefile.in │ │ └── kcpytkt.c │ ├── kdeltkt │ │ ├── Makefile.in │ │ └── kdeltkt.c │ ├── kdestroy │ │ ├── Makefile.in │ │ ├── deps │ │ └── kdestroy.c │ ├── kinit │ │ ├── Makefile.in │ │ ├── deps │ │ ├── extern.h │ │ ├── kinit.c │ │ └── kinit_kdb.c │ ├── klist │ │ ├── Makefile.in │ │ ├── deps │ │ └── klist.c │ ├── kpasswd │ │ ├── Makefile.in │ │ ├── deps │ │ └── kpasswd.c │ ├── ksu │ │ ├── Makefile.in │ │ ├── authorization.c │ │ ├── ccache.c │ │ ├── deps │ │ ├── heuristic.c │ │ ├── krb_auth_su.c │ │ ├── ksu.h │ │ ├── main.c │ │ ├── setenv.c │ │ └── xmalloc.c │ ├── kswitch │ │ ├── Makefile.in │ │ ├── deps │ │ └── kswitch.c │ └── kvno │ │ ├── Makefile.in │ │ ├── deps │ │ ├── kvno.c │ │ └── t_kvno.py │ ├── config-files │ ├── Makefile.in │ ├── convert-config-files │ ├── deps │ ├── kdc.conf │ ├── krb5.conf │ ├── mech │ └── services.append │ ├── config │ ├── ac-archive │ │ ├── README │ │ ├── ax_pthread.m4 │ │ └── ax_recursive_eval.m4 │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── lib.in │ ├── libnodeps.in │ ├── libnover.in │ ├── libobj.in │ ├── libpriv.in │ ├── mkinstalldirs │ ├── move-if-changed │ ├── pkg.m4 │ ├── post.in │ ├── pre.in │ ├── ren2long │ ├── ren2long.awk │ ├── rm.bat │ ├── shlib.conf │ ├── wconfig.pl │ ├── win-post.in │ └── win-pre.in │ ├── configure │ ├── configure.ac │ ├── deps │ ├── doc │ ├── Doxyfile.in │ ├── Makefile.in │ ├── deps │ └── version.py.in │ ├── include │ ├── CredentialsCache.h │ ├── CredentialsCache2.h │ ├── Makefile.in │ ├── adm_proto.h │ ├── autoconf.h.in │ ├── copyright.h │ ├── deps │ ├── fake-addrinfo.h │ ├── foreachaddr.h │ ├── gssapi.h │ ├── gssrpc │ │ ├── auth.h │ │ ├── auth_gss.h │ │ ├── auth_gssapi.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── netdb.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── rename.h │ │ ├── rpc.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.hin │ │ └── xdr.h │ ├── iprop.h │ ├── iprop_hdr.h │ ├── k5-base64.h │ ├── k5-buf.h │ ├── k5-cmocka.h │ ├── k5-der.h │ ├── k5-err.h │ ├── k5-gmt_mktime.h │ ├── k5-hashtab.h │ ├── k5-hex.h │ ├── k5-input.h │ ├── k5-int-pkinit.h │ ├── k5-int.h │ ├── k5-ipc_stream.h │ ├── k5-json.h │ ├── k5-platform.h │ ├── k5-plugin.h │ ├── k5-queue.h │ ├── k5-spake.h │ ├── k5-thread.h │ ├── k5-tls.h │ ├── k5-trace.h │ ├── k5-unicode.h │ ├── k5-utf8.h │ ├── k5-util.h │ ├── kcm.h │ ├── kdb.h │ ├── kdb_kt.h │ ├── kdb_log.h │ ├── krad.h │ ├── krb5.h │ ├── krb5 │ │ ├── audit_plugin.h │ │ ├── authdata_plugin.h │ │ ├── ccselect_plugin.h │ │ ├── certauth_plugin.h │ │ ├── clpreauth_plugin.h │ │ ├── hostrealm_plugin.h │ │ ├── kadm5_auth_plugin.h │ │ ├── kadm5_hook_plugin.h │ │ ├── kdcauthdata_plugin.h │ │ ├── kdcpolicy_plugin.h │ │ ├── kdcpreauth_plugin.h │ │ ├── krb5.hin │ │ ├── localauth_plugin.h │ │ ├── locate_plugin.h │ │ ├── plugin.h │ │ ├── preauth_plugin.h │ │ └── pwqual_plugin.h │ ├── net-server.h │ ├── osconf.hin │ ├── port-sockets.h │ ├── socket-utils.h │ └── win-mac.h │ ├── kadmin │ ├── Makefile.in │ ├── cli │ │ ├── Makefile.in │ │ ├── deps │ │ ├── getdate.y │ │ ├── k5srvutil.sh │ │ ├── kadmin.c │ │ ├── kadmin.h │ │ ├── kadmin_ct.ct │ │ ├── keytab.c │ │ ├── keytab_local.c │ │ └── ss_wrapper.c │ ├── dbutil │ │ ├── Makefile.in │ │ ├── deps │ │ ├── dump.c │ │ ├── import_err.et │ │ ├── kadm5_create.c │ │ ├── kdb5_create.c │ │ ├── kdb5_destroy.c │ │ ├── kdb5_mkey.c │ │ ├── kdb5_stash.c │ │ ├── kdb5_util.c │ │ ├── kdb5_util.h │ │ ├── nstrtok.h │ │ ├── ovload.c │ │ ├── strtok.c │ │ ├── t_tdumputil.c │ │ ├── t_tdumputil.py │ │ ├── tabdump.c │ │ ├── tdumputil.c │ │ └── tdumputil.h │ ├── deps │ ├── kdbkeys │ │ ├── Makefile.in │ │ └── do-test.pl │ ├── ktutil │ │ ├── Makefile.in │ │ ├── deps │ │ ├── ktutil.c │ │ ├── ktutil.h │ │ ├── ktutil_ct.ct │ │ └── ktutil_funcs.c │ ├── scripts │ │ └── inst-hdrs.sh │ └── server │ │ ├── Makefile.in │ │ ├── auth.c │ │ ├── auth.h │ │ ├── auth_acl.c │ │ ├── auth_self.c │ │ ├── deps │ │ ├── ipropd_svc.c │ │ ├── kadm_rpc_svc.c │ │ ├── misc.c │ │ ├── misc.h │ │ ├── ovsec_kadmd.c │ │ ├── schpw.c │ │ └── server_stubs.c │ ├── kdc │ ├── Makefile.in │ ├── authind.c │ ├── cammac.c │ ├── deps │ ├── dispatch.c │ ├── do_as_req.c │ ├── do_tgs_req.c │ ├── extern.c │ ├── extern.h │ ├── fast_util.c │ ├── kdc5_err.et │ ├── kdc_audit.c │ ├── kdc_audit.h │ ├── kdc_authdata.c │ ├── kdc_log.c │ ├── kdc_preauth.c │ ├── kdc_preauth_ec.c │ ├── kdc_preauth_encts.c │ ├── kdc_transit.c │ ├── kdc_util.c │ ├── kdc_util.h │ ├── main.c │ ├── ndr.c │ ├── policy.c │ ├── policy.h │ ├── realm_data.h │ ├── replay.c │ ├── reqstate.h │ ├── rtest.c │ ├── rtest.good │ ├── rtscript │ ├── t_bigreply.py │ ├── t_emptytgt.py │ ├── t_ndr.c │ ├── t_replay.c │ ├── t_workers.py │ └── tgs_policy.c │ ├── kprop │ ├── Makefile.in │ ├── deps │ ├── kprop.c │ ├── kprop.h │ ├── kprop_util.c │ ├── kpropd.c │ ├── kpropd_rpc.c │ ├── kproplog.c │ └── replica_update │ ├── lib │ ├── Makefile.in │ ├── apputils │ │ ├── Makefile.in │ │ ├── daemon.c │ │ ├── deps │ │ ├── net-server.c │ │ ├── udppktinfo.c │ │ └── udppktinfo.h │ ├── comerr32.def │ ├── crypto │ │ ├── ISSUES │ │ ├── Makefile.in │ │ ├── builtin │ │ │ ├── Makefile.in │ │ │ ├── aes │ │ │ │ ├── Makefile.in │ │ │ │ ├── aes-gen.c │ │ │ │ ├── aes.h │ │ │ │ ├── aes.txt │ │ │ │ ├── aescrypt.c │ │ │ │ ├── aeskey.c │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.c │ │ │ │ ├── aestab.h │ │ │ │ ├── brg_endian.h │ │ │ │ ├── brg_types.h │ │ │ │ ├── deps │ │ │ │ ├── iaesx64.s │ │ │ │ ├── iaesx86.s │ │ │ │ └── kresults.expected │ │ │ ├── camellia │ │ │ │ ├── Makefile.in │ │ │ │ ├── camellia-gen.c │ │ │ │ ├── camellia.c │ │ │ │ ├── camellia.h │ │ │ │ └── deps │ │ │ ├── cmac.c │ │ │ ├── deps │ │ │ ├── des │ │ │ │ ├── ISSUES │ │ │ │ ├── Makefile.in │ │ │ │ ├── d3_aead.c │ │ │ │ ├── d3_kysched.c │ │ │ │ ├── deps │ │ │ │ ├── des_int.h │ │ │ │ ├── des_keys.c │ │ │ │ ├── destest.c │ │ │ │ ├── doc │ │ │ │ │ └── libdes.doc │ │ │ │ ├── f_aead.c │ │ │ │ ├── f_cbc.c │ │ │ │ ├── f_cksum.c │ │ │ │ ├── f_parity.c │ │ │ │ ├── f_sched.c │ │ │ │ ├── f_tables.c │ │ │ │ ├── f_tables.h │ │ │ │ ├── key_sched.c │ │ │ │ ├── keytest.data │ │ │ │ ├── t_verify.c │ │ │ │ └── weak_key.c │ │ │ ├── enc_provider │ │ │ │ ├── Makefile.in │ │ │ │ ├── aes.c │ │ │ │ ├── camellia.c │ │ │ │ ├── deps │ │ │ │ ├── des3.c │ │ │ │ └── rc4.c │ │ │ ├── hash_provider │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── hash_md4.c │ │ │ │ ├── hash_md5.c │ │ │ │ ├── hash_sha1.c │ │ │ │ └── hash_sha2.c │ │ │ ├── hmac.c │ │ │ ├── kdf.c │ │ │ ├── md4 │ │ │ │ ├── ISSUES │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── md4.c │ │ │ │ └── rsa-md4.h │ │ │ ├── md5 │ │ │ │ ├── ISSUES │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── md5.c │ │ │ │ └── rsa-md5.h │ │ │ ├── pbkdf2.c │ │ │ ├── sha1 │ │ │ │ ├── ISSUES │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── shs.c │ │ │ │ ├── shs.h │ │ │ │ ├── t_shs.c │ │ │ │ └── t_shs3.c │ │ │ └── sha2 │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── sha2.h │ │ │ │ ├── sha256.c │ │ │ │ └── sha512.c │ │ ├── crypto_tests │ │ │ ├── Makefile.in │ │ │ ├── Poly.pm │ │ │ ├── aes-test.c │ │ │ ├── camellia-expect-vt.txt │ │ │ ├── camellia-test.c │ │ │ ├── deps │ │ │ ├── expect-vk.txt │ │ │ ├── expect-vt.txt │ │ │ ├── t_cf2.c │ │ │ ├── t_cf2.comments │ │ │ ├── t_cf2.expected │ │ │ ├── t_cf2.in │ │ │ ├── t_cksums.c │ │ │ ├── t_cmac.c │ │ │ ├── t_cts.c │ │ │ ├── t_decrypt.c │ │ │ ├── t_derive.c │ │ │ ├── t_encrypt.c │ │ │ ├── t_fork.c │ │ │ ├── t_hmac.c │ │ │ ├── t_kperf.c │ │ │ ├── t_mdcksum.c │ │ │ ├── t_mddriver.c │ │ │ ├── t_nfold.c │ │ │ ├── t_pkcs5.c │ │ │ ├── t_prf.c │ │ │ ├── t_prng.comments │ │ │ ├── t_prng.expected │ │ │ ├── t_prng.seed │ │ │ ├── t_sha2.c │ │ │ ├── t_short.c │ │ │ ├── t_str2key.c │ │ │ ├── test │ │ │ │ ├── Readme.txt │ │ │ │ ├── cbc_d_m.txt │ │ │ │ ├── cbc_e_m.txt │ │ │ │ ├── ecb_d_m.txt │ │ │ │ ├── ecb_e_m.txt │ │ │ │ ├── ecb_iv.readme │ │ │ │ ├── ecb_iv.txt │ │ │ │ ├── ecb_tbl.txt │ │ │ │ ├── ecb_vk.txt │ │ │ │ ├── ecb_vt.txt │ │ │ │ └── katmct.pdf │ │ │ ├── vb.txt │ │ │ └── vectors.c │ │ ├── deps │ │ ├── krb │ │ │ ├── Makefile.in │ │ │ ├── aead.c │ │ │ ├── block_size.c │ │ │ ├── cf2.c │ │ │ ├── checksum_dk_cmac.c │ │ │ ├── checksum_dk_hmac.c │ │ │ ├── checksum_etm.c │ │ │ ├── checksum_hmac_md5.c │ │ │ ├── checksum_length.c │ │ │ ├── checksum_unkeyed.c │ │ │ ├── cksumtype_to_string.c │ │ │ ├── cksumtypes.c │ │ │ ├── coll_proof_cksum.c │ │ │ ├── crypto_int.h │ │ │ ├── crypto_length.c │ │ │ ├── decrypt.c │ │ │ ├── decrypt_iov.c │ │ │ ├── default_state.c │ │ │ ├── deps │ │ │ ├── derive.c │ │ │ ├── enc_dk_cmac.c │ │ │ ├── enc_dk_hmac.c │ │ │ ├── enc_etm.c │ │ │ ├── enc_raw.c │ │ │ ├── enc_rc4.c │ │ │ ├── encrypt.c │ │ │ ├── encrypt_iov.c │ │ │ ├── encrypt_length.c │ │ │ ├── enctype_util.c │ │ │ ├── etypes.c │ │ │ ├── key.c │ │ │ ├── keyblocks.c │ │ │ ├── keyed_checksum_types.c │ │ │ ├── keyed_cksum.c │ │ │ ├── keylengths.c │ │ │ ├── make_checksum.c │ │ │ ├── make_checksum_iov.c │ │ │ ├── make_random_key.c │ │ │ ├── mandatory_sumtype.c │ │ │ ├── nfold.c │ │ │ ├── old_api_glue.c │ │ │ ├── prf.c │ │ │ ├── prf_aes2.c │ │ │ ├── prf_cmac.c │ │ │ ├── prf_des.c │ │ │ ├── prf_dk.c │ │ │ ├── prf_rc4.c │ │ │ ├── prng.c │ │ │ ├── random_to_key.c │ │ │ ├── s2k_pbkdf2.c │ │ │ ├── s2k_rc4.c │ │ │ ├── state.c │ │ │ ├── string_to_cksumtype.c │ │ │ ├── string_to_key.c │ │ │ ├── valid_cksumtype.c │ │ │ ├── verify_checksum.c │ │ │ └── verify_checksum_iov.c │ │ ├── libk5crypto.exports │ │ └── openssl │ │ │ ├── Makefile.in │ │ │ ├── cmac.c │ │ │ ├── deps │ │ │ ├── des │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── des_keys.c │ │ │ ├── enc_provider │ │ │ ├── Makefile.in │ │ │ ├── aes.c │ │ │ ├── camellia.c │ │ │ ├── deps │ │ │ ├── des3.c │ │ │ └── rc4.c │ │ │ ├── hash_provider │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ └── hash_evp.c │ │ │ ├── hmac.c │ │ │ ├── kdf.c │ │ │ ├── pbkdf2.c │ │ │ └── sha256.c │ ├── deps │ ├── gssapi │ │ ├── LICENSE │ │ ├── Makefile.in │ │ ├── README_SAMPLE_APP │ │ ├── deps │ │ ├── generic │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── disp_com_err_status.c │ │ │ ├── disp_major_status.c │ │ │ ├── gssapi.hin │ │ │ ├── gssapiP_generic.h │ │ │ ├── gssapi_alloc.h │ │ │ ├── gssapi_err_generic.et │ │ │ ├── gssapi_ext.h │ │ │ ├── gssapi_generic.c │ │ │ ├── gssapi_generic.h │ │ │ ├── maptest.c │ │ │ ├── oid_ops.c │ │ │ ├── rel_buffer.c │ │ │ ├── rel_oid_set.c │ │ │ ├── t_seqstate.c │ │ │ ├── util_buffer.c │ │ │ ├── util_buffer_set.c │ │ │ ├── util_errmap.c │ │ │ ├── util_seqstate.c │ │ │ ├── util_set.c │ │ │ └── util_token.c │ │ ├── krb5 │ │ │ ├── Makefile.in │ │ │ ├── accept_sec_context.c │ │ │ ├── acquire_cred.c │ │ │ ├── canon_name.c │ │ │ ├── compare_name.c │ │ │ ├── context_time.c │ │ │ ├── copy_ccache.c │ │ │ ├── cred_store.c │ │ │ ├── delete_sec_context.c │ │ │ ├── deps │ │ │ ├── disp_name.c │ │ │ ├── disp_status.c │ │ │ ├── duplicate_name.c │ │ │ ├── export_cred.c │ │ │ ├── export_name.c │ │ │ ├── export_sec_context.c │ │ │ ├── get_tkt_flags.c │ │ │ ├── gssapiP_krb5.h │ │ │ ├── gssapi_err_krb5.et │ │ │ ├── gssapi_krb5.c │ │ │ ├── gssapi_krb5.h │ │ │ ├── iakerb.c │ │ │ ├── import_cred.c │ │ │ ├── import_name.c │ │ │ ├── import_sec_context.c │ │ │ ├── indicate_mechs.c │ │ │ ├── init_sec_context.c │ │ │ ├── inq_context.c │ │ │ ├── inq_cred.c │ │ │ ├── inq_names.c │ │ │ ├── k5seal.c │ │ │ ├── k5sealiov.c │ │ │ ├── k5sealv3.c │ │ │ ├── k5sealv3iov.c │ │ │ ├── k5unseal.c │ │ │ ├── k5unsealiov.c │ │ │ ├── krb5_gss_glue.c │ │ │ ├── lucid_context.c │ │ │ ├── naming_exts.c │ │ │ ├── prf.c │ │ │ ├── process_context_token.c │ │ │ ├── rel_cred.c │ │ │ ├── rel_name.c │ │ │ ├── rel_oid.c │ │ │ ├── s4u_gss_glue.c │ │ │ ├── ser_sctx.c │ │ │ ├── set_allowable_enctypes.c │ │ │ ├── set_ccache.c │ │ │ ├── store_cred.c │ │ │ ├── util_cksum.c │ │ │ ├── util_crypt.c │ │ │ ├── util_seed.c │ │ │ ├── util_seqnum.c │ │ │ ├── val_cred.c │ │ │ └── wrap_size_limit.c │ │ ├── libgssapi_krb5.exports │ │ ├── mechglue │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── g_accept_sec_context.c │ │ │ ├── g_acquire_cred.c │ │ │ ├── g_acquire_cred_imp_name.c │ │ │ ├── g_acquire_cred_with_pw.c │ │ │ ├── g_authorize_localname.c │ │ │ ├── g_buffer_set.c │ │ │ ├── g_canon_name.c │ │ │ ├── g_compare_name.c │ │ │ ├── g_complete_auth_token.c │ │ │ ├── g_context_time.c │ │ │ ├── g_decapsulate_token.c │ │ │ ├── g_del_name_attr.c │ │ │ ├── g_delete_sec_context.c │ │ │ ├── g_dsp_name.c │ │ │ ├── g_dsp_name_ext.c │ │ │ ├── g_dsp_status.c │ │ │ ├── g_dup_name.c │ │ │ ├── g_encapsulate_token.c │ │ │ ├── g_exp_sec_context.c │ │ │ ├── g_export_cred.c │ │ │ ├── g_export_name.c │ │ │ ├── g_export_name_comp.c │ │ │ ├── g_get_name_attr.c │ │ │ ├── g_glue.c │ │ │ ├── g_imp_cred.c │ │ │ ├── g_imp_name.c │ │ │ ├── g_imp_sec_context.c │ │ │ ├── g_init_sec_context.c │ │ │ ├── g_initialize.c │ │ │ ├── g_inq_context.c │ │ │ ├── g_inq_context_oid.c │ │ │ ├── g_inq_cred.c │ │ │ ├── g_inq_cred_oid.c │ │ │ ├── g_inq_name.c │ │ │ ├── g_inq_names.c │ │ │ ├── g_map_name_to_any.c │ │ │ ├── g_mech_invoke.c │ │ │ ├── g_mechattr.c │ │ │ ├── g_mechname.c │ │ │ ├── g_negoex.c │ │ │ ├── g_oid_ops.c │ │ │ ├── g_prf.c │ │ │ ├── g_process_context.c │ │ │ ├── g_rel_buffer.c │ │ │ ├── g_rel_cred.c │ │ │ ├── g_rel_name.c │ │ │ ├── g_rel_name_mapping.c │ │ │ ├── g_rel_oid_set.c │ │ │ ├── g_saslname.c │ │ │ ├── g_seal.c │ │ │ ├── g_set_context_option.c │ │ │ ├── g_set_cred_option.c │ │ │ ├── g_set_name_attr.c │ │ │ ├── g_set_neg_mechs.c │ │ │ ├── g_sign.c │ │ │ ├── g_store_cred.c │ │ │ ├── g_unseal.c │ │ │ ├── g_unwrap_aead.c │ │ │ ├── g_unwrap_iov.c │ │ │ ├── g_verify.c │ │ │ ├── g_wrap_aead.c │ │ │ ├── g_wrap_iov.c │ │ │ ├── gssd_pname_to_uid.c │ │ │ ├── mechglue.h │ │ │ └── mglueP.h │ │ └── spnego │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── gssapiP_negoex.h │ │ │ ├── gssapiP_spnego.h │ │ │ ├── mech_spnego.exports │ │ │ ├── negoex_ctx.c │ │ │ ├── negoex_trace.c │ │ │ ├── negoex_util.c │ │ │ └── spnego_mech.c │ ├── gssapi32.def │ ├── kadm5 │ │ ├── Makefile.in │ │ ├── admin.h │ │ ├── admin_internal.h │ │ ├── admin_xdr.h │ │ ├── alt_prof.c │ │ ├── chpass_util.c │ │ ├── chpass_util_strings.et │ │ ├── clnt │ │ │ ├── Makefile.in │ │ │ ├── client_handle.c │ │ │ ├── client_init.c │ │ │ ├── client_internal.h │ │ │ ├── client_principal.c │ │ │ ├── client_rpc.c │ │ │ ├── clnt_chpass_util.c │ │ │ ├── clnt_policy.c │ │ │ ├── clnt_privs.c │ │ │ ├── deps │ │ │ └── libkadm5clnt_mit.exports │ │ ├── deps │ │ ├── kadm_err.et │ │ ├── kadm_rpc.h │ │ ├── kadm_rpc_xdr.c │ │ ├── logger.c │ │ ├── misc_free.c │ │ ├── server_internal.h │ │ ├── srv │ │ │ ├── Makefile.in │ │ │ ├── adb_xdr.c │ │ │ ├── deps │ │ │ ├── kadm5_hook.c │ │ │ ├── libkadm5srv_mit.exports │ │ │ ├── pwqual.c │ │ │ ├── pwqual_dict.c │ │ │ ├── pwqual_empty.c │ │ │ ├── pwqual_hesiod.c │ │ │ ├── pwqual_princ.c │ │ │ ├── server_handle.c │ │ │ ├── server_init.c │ │ │ ├── server_kdb.c │ │ │ ├── server_misc.c │ │ │ ├── svr_chpass_util.c │ │ │ ├── svr_iters.c │ │ │ ├── svr_policy.c │ │ │ └── svr_principal.c │ │ ├── str_conv.c │ │ ├── t_kadm5.c │ │ └── t_kadm5.py │ ├── kdb │ │ ├── Makefile.in │ │ ├── adb_err.et │ │ ├── decrypt_key.c │ │ ├── deps │ │ ├── encrypt_key.c │ │ ├── iprop.x │ │ ├── iprop_xdr.c │ │ ├── kdb5.c │ │ ├── kdb5.h │ │ ├── kdb5int.h │ │ ├── kdb_convert.c │ │ ├── kdb_cpw.c │ │ ├── kdb_default.c │ │ ├── kdb_log.c │ │ ├── keytab.c │ │ ├── libkdb5.exports │ │ ├── t_sort_key_data.c │ │ ├── t_stringattr.c │ │ ├── t_stringattr.py │ │ └── t_ulog.c │ ├── krad │ │ ├── Makefile.in │ │ ├── attr.c │ │ ├── attrset.c │ │ ├── client.c │ │ ├── code.c │ │ ├── deps │ │ ├── internal.h │ │ ├── libkrad.exports │ │ ├── packet.c │ │ ├── remote.c │ │ ├── t_attr.c │ │ ├── t_attrset.c │ │ ├── t_client.c │ │ ├── t_code.c │ │ ├── t_daemon.h │ │ ├── t_daemon.py │ │ ├── t_packet.c │ │ ├── t_remote.c │ │ ├── t_test.c │ │ └── t_test.h │ ├── krb5.rc │ ├── krb5 │ │ ├── Makefile.in │ │ ├── asn.1 │ │ │ ├── KRB5-asn.py │ │ │ ├── Makefile.in │ │ │ ├── README.asn1 │ │ │ ├── TODO.asn1 │ │ │ ├── asn1_encode.c │ │ │ ├── asn1_encode.h │ │ │ ├── asn1_k_encode.c │ │ │ ├── deps │ │ │ ├── krbasn1.h │ │ │ └── ldap_key_seq.c │ │ ├── ccache │ │ │ ├── Makefile.in │ │ │ ├── cc-int.h │ │ │ ├── cc_api_macos.c │ │ │ ├── cc_dir.c │ │ │ ├── cc_file.c │ │ │ ├── cc_kcm.c │ │ │ ├── cc_keyring.c │ │ │ ├── cc_memory.c │ │ │ ├── cc_mslsa.c │ │ │ ├── cc_retr.c │ │ │ ├── ccapi │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── stdcc.c │ │ │ │ ├── stdcc.h │ │ │ │ ├── winccld.c │ │ │ │ └── winccld.h │ │ │ ├── ccapi_util.c │ │ │ ├── ccapi_util.h │ │ │ ├── ccbase.c │ │ │ ├── cccopy.c │ │ │ ├── cccursor.c │ │ │ ├── ccdefault.c │ │ │ ├── ccdefops.c │ │ │ ├── ccfns.c │ │ │ ├── ccmarshal.c │ │ │ ├── ccselect.c │ │ │ ├── ccselect_hostname.c │ │ │ ├── ccselect_k5identity.c │ │ │ ├── ccselect_realm.c │ │ │ ├── deps │ │ │ ├── fcc.h │ │ │ ├── kcmrpc.defs │ │ │ ├── kcmrpc_types.h │ │ │ ├── scc.h │ │ │ ├── t_cc.c │ │ │ ├── t_cccol.c │ │ │ ├── t_cccol.py │ │ │ ├── t_cccursor.c │ │ │ ├── t_marshal.c │ │ │ ├── t_memory.c │ │ │ └── t_stdio.c │ │ ├── deps │ │ ├── error_tables │ │ │ ├── Makefile.in │ │ │ ├── asn1_err.et │ │ │ ├── deps │ │ │ ├── init_ets.c │ │ │ ├── k5e1_err.et │ │ │ ├── kdb5_err.et │ │ │ ├── krb524_err.et │ │ │ ├── krb5_err.et │ │ │ └── kv5m_err.et │ │ ├── keytab │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kt-int.h │ │ │ ├── kt_file.c │ │ │ ├── kt_memory.c │ │ │ ├── ktadd.c │ │ │ ├── ktbase.c │ │ │ ├── ktdefault.c │ │ │ ├── ktfns.c │ │ │ ├── ktfr_entry.c │ │ │ ├── ktremove.c │ │ │ ├── read_servi.c │ │ │ └── t_keytab.c │ │ ├── krb │ │ │ ├── Makefile.in │ │ │ ├── addr_comp.c │ │ │ ├── addr_order.c │ │ │ ├── addr_srch.c │ │ │ ├── ai_authdata.c │ │ │ ├── allow_weak.c │ │ │ ├── appdefault.c │ │ │ ├── auth_con.c │ │ │ ├── auth_con.h │ │ │ ├── authdata.c │ │ │ ├── authdata.h │ │ │ ├── authdata_dec.c │ │ │ ├── authdata_enc.c │ │ │ ├── authdata_exp.c │ │ │ ├── bld_pr_ext.c │ │ │ ├── bld_princ.c │ │ │ ├── brand.c │ │ │ ├── cammac_util.c │ │ │ ├── chk_trans.c │ │ │ ├── chpw.c │ │ │ ├── conv_creds.c │ │ │ ├── conv_princ.c │ │ │ ├── copy_addrs.c │ │ │ ├── copy_athctr.c │ │ │ ├── copy_auth.c │ │ │ ├── copy_cksum.c │ │ │ ├── copy_creds.c │ │ │ ├── copy_ctx.c │ │ │ ├── copy_data.c │ │ │ ├── copy_key.c │ │ │ ├── copy_princ.c │ │ │ ├── copy_tick.c │ │ │ ├── cp_key_cnt.c │ │ │ ├── decode_kdc.c │ │ │ ├── decrypt_tk.c │ │ │ ├── deltat.c │ │ │ ├── deps │ │ │ ├── enc_helper.c │ │ │ ├── enc_keyhelper.c │ │ │ ├── encode_kdc.c │ │ │ ├── encrypt_tk.c │ │ │ ├── etype_list.c │ │ │ ├── fast.c │ │ │ ├── fast.h │ │ │ ├── fwd_tgt.c │ │ │ ├── gc_via_tkt.c │ │ │ ├── gen_save_subkey.c │ │ │ ├── gen_seqnum.c │ │ │ ├── gen_subkey.c │ │ │ ├── get_creds.c │ │ │ ├── get_etype_info.c │ │ │ ├── get_in_tkt.c │ │ │ ├── gic_keytab.c │ │ │ ├── gic_opt.c │ │ │ ├── gic_pwd.c │ │ │ ├── in_tkt_sky.c │ │ │ ├── init_creds_ctx.h │ │ │ ├── init_ctx.c │ │ │ ├── init_keyblock.c │ │ │ ├── int-proto.h │ │ │ ├── kdc_rep_dc.c │ │ │ ├── kerrs.c │ │ │ ├── kfree.c │ │ │ ├── libdef_parse.c │ │ │ ├── mk_cred.c │ │ │ ├── mk_error.c │ │ │ ├── mk_priv.c │ │ │ ├── mk_rep.c │ │ │ ├── mk_req.c │ │ │ ├── mk_req_ext.c │ │ │ ├── mk_safe.c │ │ │ ├── pac.c │ │ │ ├── pac_sign.c │ │ │ ├── padata.c │ │ │ ├── parse.c │ │ │ ├── parse_host_string.c │ │ │ ├── plugin.c │ │ │ ├── pr_to_salt.c │ │ │ ├── preauth2.c │ │ │ ├── preauth_ec.c │ │ │ ├── preauth_encts.c │ │ │ ├── preauth_otp.c │ │ │ ├── preauth_pkinit.c │ │ │ ├── preauth_sam2.c │ │ │ ├── princ_comp.c │ │ │ ├── privsafe.c │ │ │ ├── random_str.c │ │ │ ├── rd_cred.c │ │ │ ├── rd_error.c │ │ │ ├── rd_priv.c │ │ │ ├── rd_rep.c │ │ │ ├── rd_req.c │ │ │ ├── rd_req_dec.c │ │ │ ├── rd_safe.c │ │ │ ├── recvauth.c │ │ │ ├── response_items.c │ │ │ ├── s4u_creds.c │ │ │ ├── send_tgs.c │ │ │ ├── sendauth.c │ │ │ ├── ser_actx.c │ │ │ ├── ser_adata.c │ │ │ ├── ser_addr.c │ │ │ ├── ser_auth.c │ │ │ ├── ser_cksum.c │ │ │ ├── ser_ctx.c │ │ │ ├── ser_key.c │ │ │ ├── ser_princ.c │ │ │ ├── serialize.c │ │ │ ├── set_realm.c │ │ │ ├── sname_match.c │ │ │ ├── srv_dec_tkt.c │ │ │ ├── srv_rcache.c │ │ │ ├── str_conv.c │ │ │ ├── strptime.c │ │ │ ├── t_ad_fx_armor.c │ │ │ ├── t_authdata.c │ │ │ ├── t_cc_config.c │ │ │ ├── t_copy_context.c │ │ │ ├── t_deltat.c │ │ │ ├── t_etypes.c │ │ │ ├── t_expand.c │ │ │ ├── t_expire_warn.c │ │ │ ├── t_expire_warn.py │ │ │ ├── t_get_etype_info.c │ │ │ ├── t_get_etype_info.py │ │ │ ├── t_in_ccache.c │ │ │ ├── t_in_ccache_patypes.py │ │ │ ├── t_kerb.c │ │ │ ├── t_krb5.conf │ │ │ ├── t_pac.c │ │ │ ├── t_parse_host_string.c │ │ │ ├── t_princ.c │ │ │ ├── t_ref_kerb.out │ │ │ ├── t_response_items.c │ │ │ ├── t_ser.c │ │ │ ├── t_sname_match.c │ │ │ ├── t_valid_times.c │ │ │ ├── t_vfy_increds.c │ │ │ ├── t_vfy_increds.py │ │ │ ├── t_walk_rtree.c │ │ │ ├── tgtname.c │ │ │ ├── transit-tests │ │ │ ├── unparse.c │ │ │ ├── val_renew.c │ │ │ ├── valid_times.c │ │ │ ├── vfy_increds.c │ │ │ ├── vic_opt.c │ │ │ ├── walk_rtree.c │ │ │ ├── walktree-tests │ │ │ └── x-deltat.y │ │ ├── krb5_libinit.c │ │ ├── krb5_libinit.h │ │ ├── libkrb5.exports │ │ ├── os │ │ │ ├── Makefile.in │ │ │ ├── accessor.c │ │ │ ├── c_ustime.c │ │ │ ├── ccdefname.c │ │ │ ├── changepw.c │ │ │ ├── deps │ │ │ ├── dnsglue.c │ │ │ ├── dnsglue.h │ │ │ ├── dnssrv.c │ │ │ ├── expand_path.c │ │ │ ├── full_ipadr.c │ │ │ ├── gen_port.c │ │ │ ├── gen_rname.c │ │ │ ├── genaddrs.c │ │ │ ├── hostaddr.c │ │ │ ├── hostrealm.c │ │ │ ├── hostrealm_dns.c │ │ │ ├── hostrealm_domain.c │ │ │ ├── hostrealm_profile.c │ │ │ ├── hostrealm_registry.c │ │ │ ├── init_os_ctx.c │ │ │ ├── krbfileio.c │ │ │ ├── ktdefname.c │ │ │ ├── localaddr.c │ │ │ ├── localauth.c │ │ │ ├── localauth_an2ln.c │ │ │ ├── localauth_k5login.c │ │ │ ├── localauth_names.c │ │ │ ├── localauth_rule.c │ │ │ ├── locate_kdc.c │ │ │ ├── lock_file.c │ │ │ ├── mk_faddr.c │ │ │ ├── net_read.c │ │ │ ├── net_write.c │ │ │ ├── os-proto.h │ │ │ ├── port2ip.c │ │ │ ├── prompter.c │ │ │ ├── read_msg.c │ │ │ ├── read_pwd.c │ │ │ ├── realm_dom.c │ │ │ ├── ref_std_conf.out │ │ │ ├── sendto_kdc.c │ │ │ ├── sn2princ.c │ │ │ ├── t_an_to_ln.c │ │ │ ├── t_discover_uri.py │ │ │ ├── t_expand_path.c │ │ │ ├── t_gifconf.c │ │ │ ├── t_kuserok.c │ │ │ ├── t_locate_kdc.c │ │ │ ├── t_std_conf.c │ │ │ ├── t_trace.c │ │ │ ├── t_trace.ref │ │ │ ├── td_krb5.conf │ │ │ ├── thread_safe.c │ │ │ ├── timeofday.c │ │ │ ├── toffset.c │ │ │ ├── trace.c │ │ │ ├── unlck_file.c │ │ │ ├── ustime.c │ │ │ └── write_msg.c │ │ ├── posix │ │ │ ├── Makefile.in │ │ │ └── syslog.c │ │ ├── rcache │ │ │ ├── Makefile.in │ │ │ ├── RELEASE │ │ │ ├── deps │ │ │ ├── memrcache.c │ │ │ ├── memrcache.h │ │ │ ├── rc-int.h │ │ │ ├── rc_base.c │ │ │ ├── rc_dfl.c │ │ │ ├── rc_file2.c │ │ │ ├── rc_none.c │ │ │ ├── t_memrcache.c │ │ │ └── t_rcfile2.c │ │ └── unicode │ │ │ ├── CompositionExclusions.txt │ │ │ ├── Makefile.in │ │ │ ├── UCD-Terms │ │ │ ├── UnicodeData.txt │ │ │ ├── deps │ │ │ ├── ucdata │ │ │ ├── MUTTUCData.txt │ │ │ ├── README │ │ │ ├── api.txt │ │ │ ├── format.txt │ │ │ ├── ucdata.c │ │ │ ├── ucdata.h │ │ │ ├── ucdata.man │ │ │ ├── ucgendat.c │ │ │ └── uctable.h │ │ │ └── ucstr.c │ ├── krb5_32.def │ ├── rpc │ │ ├── Makefile.in │ │ ├── auth_gss.c │ │ ├── auth_gssapi.c │ │ ├── auth_gssapi_misc.c │ │ ├── auth_none.c │ │ ├── auth_unix.c │ │ ├── authgss_prot.c │ │ ├── authunix_prot.c │ │ ├── bindresvport.c │ │ ├── clnt_generic.c │ │ ├── clnt_perror.c │ │ ├── clnt_raw.c │ │ ├── clnt_simple.c │ │ ├── clnt_tcp.c │ │ ├── clnt_udp.c │ │ ├── deps │ │ ├── dyn.c │ │ ├── dyn.h │ │ ├── dynP.h │ │ ├── dyntest.c │ │ ├── get_myaddress.c │ │ ├── getrpcent.c │ │ ├── getrpcport.c │ │ ├── gssrpcint.h │ │ ├── libgssrpc.exports │ │ ├── pmap_clnt.c │ │ ├── pmap_getmaps.c │ │ ├── pmap_getport.c │ │ ├── pmap_prot.c │ │ ├── pmap_prot2.c │ │ ├── pmap_rmt.c │ │ ├── rpc_callmsg.c │ │ ├── rpc_commondata.c │ │ ├── rpc_dtablesize.c │ │ ├── rpc_prot.c │ │ ├── svc.c │ │ ├── svc_auth.c │ │ ├── svc_auth_gss.c │ │ ├── svc_auth_gssapi.c │ │ ├── svc_auth_none.c │ │ ├── svc_auth_unix.c │ │ ├── svc_raw.c │ │ ├── svc_run.c │ │ ├── svc_simple.c │ │ ├── svc_tcp.c │ │ ├── svc_udp.c │ │ ├── unit-test │ │ │ ├── Makefile.in │ │ │ ├── client.c │ │ │ ├── deps │ │ │ ├── rpc_test.h │ │ │ ├── rpc_test.x │ │ │ ├── rpc_test_clnt.c │ │ │ ├── rpc_test_svc.c │ │ │ ├── server.c │ │ │ └── t_rpc.py │ │ ├── xdr.c │ │ ├── xdr_alloc.c │ │ ├── xdr_array.c │ │ ├── xdr_float.c │ │ ├── xdr_mem.c │ │ ├── xdr_rec.c │ │ ├── xdr_reference.c │ │ ├── xdr_sizeof.c │ │ └── xdr_stdio.c │ ├── win_glue.c │ └── xpprof32.def │ ├── man │ ├── Makefile.in │ ├── README │ ├── deps │ ├── dot.k5identity.5 │ ├── dot.k5login.5 │ ├── k5identity.man │ ├── k5login.man │ ├── k5srvutil.man │ ├── kadm5.acl.man │ ├── kadmin.local.8 │ ├── kadmin.man │ ├── kadmind.man │ ├── kdb5_ldap_util.man │ ├── kdb5_util.man │ ├── kdc.conf.man │ ├── kdestroy.man │ ├── kerberos.man │ ├── kinit.man │ ├── klist.man │ ├── kpasswd.man │ ├── kprop.man │ ├── kpropd.man │ ├── kproplog.man │ ├── krb5-config.man │ ├── krb5.conf.man │ ├── krb5kdc.man │ ├── ksu.man │ ├── kswitch.man │ ├── ktutil.man │ ├── kvno.man │ ├── sclient.man │ └── sserver.man │ ├── patchlevel.h │ ├── plugins │ ├── audit │ │ ├── Makefile.in │ │ ├── deps │ │ ├── j_dict.h │ │ ├── kdc_j_encode.c │ │ ├── kdc_j_encode.h │ │ ├── libauditjenc.exports │ │ ├── simple │ │ │ ├── Makefile.in │ │ │ ├── au_simple_main.c │ │ │ ├── deps │ │ │ └── k5audit.exports │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── au_test.c │ │ │ ├── deps │ │ │ └── k5audit_test.exports │ ├── authdata │ │ ├── greet_client │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── greet.c │ │ │ └── greet_client.exports │ │ └── greet_server │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── greet_auth.c │ │ │ └── greet_server.exports │ ├── certauth │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── certauth_test.exports │ │ │ ├── deps │ │ │ └── main.c │ ├── gssapi │ │ └── negoextest │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── gss_negoextest.exports │ │ │ └── main.c │ ├── hostrealm │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── hostrealm_test.exports │ │ │ └── main.c │ ├── kadm5_auth │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kadm5_auth_test.exports │ │ │ └── main.c │ ├── kadm5_hook │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kadm5_hook_test.exports │ │ │ └── main.c │ ├── kdb │ │ ├── db2 │ │ │ ├── Makefile.in │ │ │ ├── adb_openclose.c │ │ │ ├── adb_policy.c │ │ │ ├── db2.exports │ │ │ ├── db2_exp.c │ │ │ ├── deps │ │ │ ├── kdb_db2.c │ │ │ ├── kdb_db2.h │ │ │ ├── kdb_xdr.c │ │ │ ├── kdb_xdr.h │ │ │ ├── libdb2 │ │ │ │ ├── CHANGELOG.db2 │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README │ │ │ │ ├── README.NOT.SLEEPYCAT.DB │ │ │ │ ├── README.db2 │ │ │ │ ├── btree │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── bt_close.c │ │ │ │ │ ├── bt_conv.c │ │ │ │ │ ├── bt_debug.c │ │ │ │ │ ├── bt_delete.c │ │ │ │ │ ├── bt_get.c │ │ │ │ │ ├── bt_open.c │ │ │ │ │ ├── bt_overflow.c │ │ │ │ │ ├── bt_page.c │ │ │ │ │ ├── bt_put.c │ │ │ │ │ ├── bt_search.c │ │ │ │ │ ├── bt_seq.c │ │ │ │ │ ├── bt_split.c │ │ │ │ │ ├── bt_utils.c │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── deps │ │ │ │ │ └── extern.h │ │ │ │ ├── db │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── db.c │ │ │ │ │ └── deps │ │ │ │ ├── deps │ │ │ │ ├── docs │ │ │ │ │ ├── btree.3.ps │ │ │ │ │ ├── dbopen.3.ps │ │ │ │ │ ├── hash.3.ps │ │ │ │ │ ├── hash.usenix.ps │ │ │ │ │ ├── libtp.usenix.ps │ │ │ │ │ ├── mpool.3.ps │ │ │ │ │ └── recno.3.ps │ │ │ │ ├── hash │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── dbm.c │ │ │ │ │ ├── deps │ │ │ │ │ ├── extern.h │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.c.patch │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_bigkey.c │ │ │ │ │ ├── hash_debug.c │ │ │ │ │ ├── hash_func.c │ │ │ │ │ ├── hash_log2.c │ │ │ │ │ ├── hash_page.c │ │ │ │ │ ├── hsearch.c │ │ │ │ │ ├── page.h │ │ │ │ │ ├── page.h.patch │ │ │ │ │ └── search.h │ │ │ │ ├── include │ │ │ │ │ ├── config.h │ │ │ │ │ ├── db-config.hin │ │ │ │ │ ├── db-dbm.h │ │ │ │ │ ├── db-int.h │ │ │ │ │ ├── db-ndbm.h │ │ │ │ │ ├── db-queue.h │ │ │ │ │ └── db.hin │ │ │ │ ├── libdb.exports │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── db.man.ps │ │ │ │ │ ├── db_btree.3 │ │ │ │ │ ├── db_hash.3 │ │ │ │ │ ├── db_lock.3 │ │ │ │ │ ├── db_log.3 │ │ │ │ │ ├── db_mpool.3 │ │ │ │ │ ├── db_open.3 │ │ │ │ │ ├── db_recno.3 │ │ │ │ │ ├── db_txn.3 │ │ │ │ │ └── spell.ok │ │ │ │ ├── mpool │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README │ │ │ │ │ ├── deps │ │ │ │ │ ├── mpool.c │ │ │ │ │ └── mpool.h │ │ │ │ ├── recno │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── deps │ │ │ │ │ ├── extern.h │ │ │ │ │ ├── rec_close.c │ │ │ │ │ ├── rec_delete.c │ │ │ │ │ ├── rec_get.c │ │ │ │ │ ├── rec_open.c │ │ │ │ │ ├── rec_put.c │ │ │ │ │ ├── rec_search.c │ │ │ │ │ ├── rec_seq.c │ │ │ │ │ ├── rec_utils.c │ │ │ │ │ └── recno.h │ │ │ │ └── test │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── SEQ_TEST │ │ │ │ │ ├── data │ │ │ │ │ ├── mbox │ │ │ │ │ └── t.c │ │ │ │ │ ├── btree.tests │ │ │ │ │ └── main.c │ │ │ │ │ ├── dbtest.c │ │ │ │ │ ├── deps │ │ │ │ │ ├── dictionary │ │ │ │ │ ├── hash1.tests │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── driver2.c │ │ │ │ │ ├── makedb.sh │ │ │ │ │ ├── tcreat3.c │ │ │ │ │ ├── tdel.c │ │ │ │ │ ├── testit │ │ │ │ │ ├── thash4.c │ │ │ │ │ ├── tread2.c │ │ │ │ │ ├── tseq.c │ │ │ │ │ └── tverify.c │ │ │ │ │ ├── hash2.tests │ │ │ │ │ ├── README │ │ │ │ │ ├── bigtest.c │ │ │ │ │ ├── passtest.c │ │ │ │ │ └── passwd │ │ │ │ │ │ └── genpass.c │ │ │ │ │ ├── run.test │ │ │ │ │ ├── t.be.txt │ │ │ │ │ └── t.le.txt │ │ │ ├── lockout.c │ │ │ ├── pol_xdr.c │ │ │ └── policy_db.h │ │ ├── ldap │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kldap.exports │ │ │ ├── ldap_exp.c │ │ │ ├── ldap_util │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── kdb5_ldap_list.c │ │ │ │ ├── kdb5_ldap_list.h │ │ │ │ ├── kdb5_ldap_policy.c │ │ │ │ ├── kdb5_ldap_policy.h │ │ │ │ ├── kdb5_ldap_realm.c │ │ │ │ ├── kdb5_ldap_realm.h │ │ │ │ ├── kdb5_ldap_services.c │ │ │ │ ├── kdb5_ldap_services.h │ │ │ │ ├── kdb5_ldap_util.c │ │ │ │ └── kdb5_ldap_util.h │ │ │ └── libkdb_ldap │ │ │ │ ├── Makefile.in │ │ │ │ ├── deps │ │ │ │ ├── kdb_ldap.c │ │ │ │ ├── kdb_ldap.h │ │ │ │ ├── kdb_ldap_conn.c │ │ │ │ ├── kdb_xdr.c │ │ │ │ ├── kerberos.ldif │ │ │ │ ├── kerberos.openldap.ldif │ │ │ │ ├── kerberos.schema │ │ │ │ ├── ldap_create.c │ │ │ │ ├── ldap_err.c │ │ │ │ ├── ldap_err.h │ │ │ │ ├── ldap_handle.c │ │ │ │ ├── ldap_handle.h │ │ │ │ ├── ldap_krbcontainer.c │ │ │ │ ├── ldap_krbcontainer.h │ │ │ │ ├── ldap_main.h │ │ │ │ ├── ldap_misc.c │ │ │ │ ├── ldap_misc.h │ │ │ │ ├── ldap_principal.c │ │ │ │ ├── ldap_principal.h │ │ │ │ ├── ldap_principal2.c │ │ │ │ ├── ldap_pwd_policy.c │ │ │ │ ├── ldap_pwd_policy.h │ │ │ │ ├── ldap_realm.c │ │ │ │ ├── ldap_realm.h │ │ │ │ ├── ldap_service_stash.c │ │ │ │ ├── ldap_service_stash.h │ │ │ │ ├── ldap_tkt_policy.c │ │ │ │ ├── ldap_tkt_policy.h │ │ │ │ ├── libkdb_ldap.exports │ │ │ │ ├── lockout.c │ │ │ │ ├── princ_xdr.c │ │ │ │ └── princ_xdr.h │ │ ├── lmdb │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kdb_lmdb.c │ │ │ ├── klmdb-int.h │ │ │ ├── klmdb.exports │ │ │ ├── lockout.c │ │ │ └── marshal.c │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kdb_test.c │ │ │ └── test.exports │ ├── kdcpolicy │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── kdcpolicy_test.exports │ │ │ └── main.c │ ├── localauth │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── localauth_test.exports │ │ │ └── main.c │ ├── preauth │ │ ├── otp │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── main.c │ │ │ ├── otp.exports │ │ │ ├── otp_state.c │ │ │ └── otp_state.h │ │ ├── pkinit │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── pkcs11.h │ │ │ ├── pkinit.exports │ │ │ ├── pkinit.h │ │ │ ├── pkinit_accessor.c │ │ │ ├── pkinit_accessor.h │ │ │ ├── pkinit_clnt.c │ │ │ ├── pkinit_constants.c │ │ │ ├── pkinit_crypto.h │ │ │ ├── pkinit_crypto_openssl.c │ │ │ ├── pkinit_crypto_openssl.h │ │ │ ├── pkinit_identity.c │ │ │ ├── pkinit_kdf_test.c │ │ │ ├── pkinit_lib.c │ │ │ ├── pkinit_matching.c │ │ │ ├── pkinit_profile.c │ │ │ ├── pkinit_srv.c │ │ │ └── pkinit_trace.h │ │ ├── securid_sam2 │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── deps │ │ │ ├── extern.h │ │ │ ├── grail.c │ │ │ ├── securid2.c │ │ │ ├── securid_sam2.exports │ │ │ └── securid_sam2_main.c │ │ ├── spake │ │ │ ├── AUTHORS │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── edwards25519.c │ │ │ ├── edwards25519_fiat.h │ │ │ ├── edwards25519_tables.h │ │ │ ├── groups.c │ │ │ ├── groups.h │ │ │ ├── iana.c │ │ │ ├── iana.h │ │ │ ├── openssl.c │ │ │ ├── spake.def │ │ │ ├── spake.exports │ │ │ ├── spake_client.c │ │ │ ├── spake_kdc.c │ │ │ ├── t_krb5.conf │ │ │ ├── t_vectors.c │ │ │ ├── trace.h │ │ │ ├── util.c │ │ │ └── util.h │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── cltest.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── deps │ │ │ ├── kdctest.c │ │ │ └── test.exports │ ├── pwqual │ │ └── test │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── main.c │ │ │ └── pwqual_test.exports │ └── tls │ │ └── k5tls │ │ ├── Makefile.in │ │ ├── deps │ │ ├── k5tls.exports │ │ ├── notls.c │ │ └── openssl.c │ ├── po │ ├── Makefile.in │ ├── de.po │ ├── deps │ ├── en_US.po │ ├── ka.po │ └── mit-krb5.pot │ ├── prototype │ ├── prototype.c │ └── prototype.h │ ├── tests │ ├── Makefile.in │ ├── adata.c │ ├── asn.1 │ │ ├── Makefile.in │ │ ├── README │ │ ├── cammac.asn1 │ │ ├── debug.h │ │ ├── deps │ │ ├── krb5.asn1 │ │ ├── krb5_decode_leak.c │ │ ├── krb5_decode_test.c │ │ ├── krb5_encode_test.c │ │ ├── ktest.c │ │ ├── ktest.h │ │ ├── ktest_equal.c │ │ ├── ktest_equal.h │ │ ├── ldap_encode.out │ │ ├── ldap_trval.out │ │ ├── make-vectors.c │ │ ├── otp.asn1 │ │ ├── pkinit-agility.asn1 │ │ ├── pkinit.asn1 │ │ ├── pkinit_encode.out │ │ ├── pkinit_trval.out │ │ ├── pkix.asn1 │ │ ├── reference_encode.out │ │ ├── spake.asn1 │ │ ├── t_trval.c │ │ ├── trval.c │ │ ├── trval_reference.out │ │ ├── utility.c │ │ └── utility.h │ ├── au_dict.json │ ├── conccache.c │ ├── create │ │ ├── Makefile.in │ │ ├── deps │ │ └── kdb5_mkdums.c │ ├── deps │ ├── dump.c │ ├── dumpfiles │ │ ├── dump │ │ ├── dump.16 │ │ ├── dump.b7 │ │ ├── dump.ov │ │ ├── dump.r13 │ │ └── dump.r18 │ ├── etinfo.c │ ├── forward.c │ ├── gcred.c │ ├── gss-threads │ │ ├── Makefile.in │ │ ├── README │ │ ├── deps │ │ ├── gss-client.c │ │ ├── gss-misc.c │ │ ├── gss-misc.h │ │ └── gss-server.c │ ├── gssapi │ │ ├── Makefile.in │ │ ├── ccinit.c │ │ ├── ccrefresh.c │ │ ├── common.c │ │ ├── common.h │ │ ├── deps │ │ ├── reload.c │ │ ├── t_accname.c │ │ ├── t_add_cred.c │ │ ├── t_authind.py │ │ ├── t_bindings.c │ │ ├── t_bindings.py │ │ ├── t_ccselect.c │ │ ├── t_ccselect.py │ │ ├── t_ciflags.c │ │ ├── t_client_keytab.py │ │ ├── t_context.c │ │ ├── t_credstore.c │ │ ├── t_credstore.py │ │ ├── t_enctypes.c │ │ ├── t_enctypes.py │ │ ├── t_err.c │ │ ├── t_export_cred.c │ │ ├── t_export_cred.py │ │ ├── t_export_name.c │ │ ├── t_gssapi.py │ │ ├── t_gssexts.c │ │ ├── t_imp_cred.c │ │ ├── t_imp_name.c │ │ ├── t_inq_cred.c │ │ ├── t_inq_ctx.c │ │ ├── t_inq_mechs_name.c │ │ ├── t_invalid.c │ │ ├── t_iov.c │ │ ├── t_lifetime.c │ │ ├── t_namingexts.c │ │ ├── t_negoex.py │ │ ├── t_oid.c │ │ ├── t_pcontok.c │ │ ├── t_prf.c │ │ ├── t_s4u.c │ │ ├── t_s4u.py │ │ ├── t_s4u2proxy_krb5.c │ │ ├── t_saslname.c │ │ ├── t_spnego.c │ │ ├── t_srcattrs.c │ │ ├── t_store_cred.c │ │ └── t_store_cred.py │ ├── hammer │ │ ├── Makefile.in │ │ ├── deps │ │ ├── kdc5_hammer.c │ │ └── pp.c │ ├── hist.c │ ├── hooks.c │ ├── hrealm.c │ ├── icinterleave.c │ ├── icred.c │ ├── jsonwalker.py │ ├── kcmserver.py │ ├── kdbtest.c │ ├── localauth.c │ ├── misc │ │ ├── Makefile.in │ │ ├── deps │ │ ├── test_chpw_message.c │ │ ├── test_cxx_gss.cpp │ │ ├── test_cxx_k5int.cpp │ │ ├── test_cxx_kadm5.cpp │ │ ├── test_cxx_krb5.cpp │ │ ├── test_cxx_rpc.cpp │ │ ├── test_getpw.c │ │ ├── test_getsockname.c │ │ └── test_nfold.c │ ├── pkinit-certs │ │ ├── ca.pem │ │ ├── generic.p12 │ │ ├── generic.pem │ │ ├── kdc.pem │ │ ├── make-certs.sh │ │ ├── privkey-enc.pem │ │ ├── privkey.pem │ │ ├── user-enc.p12 │ │ ├── user-upn.p12 │ │ ├── user-upn.pem │ │ ├── user-upn2.p12 │ │ ├── user-upn2.pem │ │ ├── user-upn3.p12 │ │ ├── user-upn3.pem │ │ ├── user.p12 │ │ └── user.pem │ ├── plugorder.c │ ├── proxy-certs │ │ ├── ca.pem │ │ ├── make-certs.sh │ │ ├── proxy-badsig.pem │ │ ├── proxy-ideal.pem │ │ ├── proxy-no-match.pem │ │ ├── proxy-san.pem │ │ └── proxy-subject.pem │ ├── rdreq.c │ ├── replay.c │ ├── responder.c │ ├── s2p.c │ ├── s4u2proxy.c │ ├── s4u2self.c │ ├── shlib │ │ ├── Makefile.in │ │ ├── deps │ │ └── t_loader.c │ ├── softpkcs11 │ │ ├── Makefile.in │ │ ├── deps │ │ ├── main.c │ │ └── softpkcs11.exports │ ├── t_audit.py │ ├── t_authdata.py │ ├── t_bogus_kdc_req.py │ ├── t_ccache.py │ ├── t_certauth.py │ ├── t_changepw.py │ ├── t_crossrealm.py │ ├── t_cve-2012-1014.py │ ├── t_cve-2012-1015.py │ ├── t_cve-2013-1416.py │ ├── t_cve-2013-1417.py │ ├── t_cve-2021-36222.py │ ├── t_dump.py │ ├── t_errmsg.py │ ├── t_etype_info.py │ ├── t_general.py │ ├── t_hooks.py │ ├── t_hostrealm.py │ ├── t_inetd.c │ ├── t_iprop.py │ ├── t_kadm5_auth.py │ ├── t_kadm5_hook.py │ ├── t_kadmin.py │ ├── t_kadmin_acl.py │ ├── t_kadmin_parsing.py │ ├── t_kdb.py │ ├── t_kdb_locking.py │ ├── t_kdc_log.py │ ├── t_kdcoptions.py │ ├── t_kdcpolicy.py │ ├── t_keydata.py │ ├── t_keyrollover.py │ ├── t_keytab.py │ ├── t_kprop.py │ ├── t_localauth.py │ ├── t_mkey.py │ ├── t_otp.py │ ├── t_pkinit.py │ ├── t_policy.py │ ├── t_preauth.py │ ├── t_princflags.py │ ├── t_proxy.py │ ├── t_pwqual.py │ ├── t_rdreq.py │ ├── t_referral.py │ ├── t_renew.py │ ├── t_renprinc.py │ ├── t_replay.py │ ├── t_salt.py │ ├── t_sesskeynego.py │ ├── t_skew.py │ ├── t_sn2princ.py │ ├── t_spake.py │ ├── t_stringattr.py │ ├── t_tabdump.py │ ├── t_u2u.py │ ├── t_unlockiter.py │ ├── t_y2038.py │ ├── test1.c │ ├── threads │ │ ├── Makefile.in │ │ ├── deps │ │ ├── gss-perf.c │ │ ├── init_ctx.c │ │ ├── prof1.c │ │ ├── profread.c │ │ └── t_rcache.c │ ├── unlockiter.c │ └── verify │ │ ├── Makefile.in │ │ ├── deps │ │ ├── kdb5_verify.c │ │ └── pkey.c │ ├── util │ ├── Makefile.in │ ├── ac_check_krb5.m4 │ ├── check-ac-syms │ ├── cstyle-file.py │ ├── cstyle.py │ ├── def-check.pl │ ├── depfix.pl │ ├── deps │ ├── et │ │ ├── ISSUES │ │ ├── Makefile.in │ │ ├── com_err.3 │ │ ├── com_err.c │ │ ├── com_err.h │ │ ├── com_err.texinfo │ │ ├── compile_et.1 │ │ ├── compile_et.sh │ │ ├── config_script │ │ ├── deps │ │ ├── error_message.c │ │ ├── error_table.h │ │ ├── et.exp │ │ ├── et.pbexp │ │ ├── et1.et │ │ ├── et2.et │ │ ├── et_c.awk │ │ ├── et_c.pl │ │ ├── et_h.awk │ │ ├── et_h.pl │ │ ├── et_name.c │ │ ├── libcom_err.exports │ │ ├── mit-sipb-copyright.h │ │ ├── t_com_err.c │ │ ├── test1.et │ │ ├── test2.et │ │ ├── test_et.c │ │ └── texinfo.tex │ ├── exitsleep.c │ ├── export-check.pl │ ├── gen-map.pl │ ├── gen.pl │ ├── getsyms │ ├── getsyms.sed │ ├── k5test.py │ ├── krb5-batch-reindent.el │ ├── krb5-c-style.el │ ├── krb5-check-copyright.py │ ├── krb5-hack-cc-mode-caselabel.el │ ├── krb5-mark-cstyle.py │ ├── krb5-send-pr.sh │ ├── ktemplate.pm │ ├── lndir │ ├── mkrel │ ├── princflags.py │ ├── profile │ │ ├── Makefile.in │ │ ├── argv_parse.c │ │ ├── argv_parse.h │ │ ├── deps │ │ ├── dosshell.ini │ │ ├── final.expected │ │ ├── final1.ini │ │ ├── final2.ini │ │ ├── final3.ini │ │ ├── final4.ini │ │ ├── final5.ini │ │ ├── krb5.conf │ │ ├── libprofile.exports │ │ ├── prof_FSp_glue.c │ │ ├── prof_err.et │ │ ├── prof_file.c │ │ ├── prof_get.c │ │ ├── prof_init.c │ │ ├── prof_int.h │ │ ├── prof_parse.c │ │ ├── prof_set.c │ │ ├── prof_tree.c │ │ ├── profile.5 │ │ ├── profile.exp │ │ ├── profile.hin │ │ ├── profile.pbexp │ │ ├── prtest.in │ │ ├── prtest.script │ │ ├── t_profile.c │ │ ├── test.ini │ │ ├── test_load.c │ │ ├── test_parse.c │ │ ├── test_profile.c │ │ ├── test_vtable.c │ │ └── testmod │ │ │ ├── Makefile.in │ │ │ ├── deps │ │ │ ├── proftest.exports │ │ │ └── testmod_main.c │ ├── ss │ │ ├── Makefile.in │ │ ├── config_script │ │ ├── copyright.h │ │ ├── ct_c_awk.in │ │ ├── ct_c_sed.in │ │ ├── data.c │ │ ├── deps │ │ ├── error.c │ │ ├── execute_cmd.c │ │ ├── help.c │ │ ├── invocation.c │ │ ├── list_rqs.c │ │ ├── listen.c │ │ ├── mit-sipb-copyright.h │ │ ├── mk_cmds.sh │ │ ├── pager.c │ │ ├── parse.c │ │ ├── prompt.c │ │ ├── request_tbl.c │ │ ├── requests.c │ │ ├── ss.h │ │ ├── ss_err.et │ │ ├── ss_internal.h │ │ ├── std_rqs.ct │ │ └── test_ss.c │ ├── support │ │ ├── Makefile.in │ │ ├── base64.c │ │ ├── bcmp.c │ │ ├── cache-addrinfo.h │ │ ├── deps │ │ ├── dir_filenames.c │ │ ├── errors.c │ │ ├── fake-addrinfo.c │ │ ├── fnmatch.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── gettimeofday.c │ │ ├── gmt_mktime.c │ │ ├── hashtab.c │ │ ├── hex.c │ │ ├── init-addrinfo.c │ │ ├── ipc_stream.c │ │ ├── json.c │ │ ├── k5buf.c │ │ ├── libkrb5support-fixed.exports │ │ ├── mkstemp.c │ │ ├── path.c │ │ ├── plugins.c │ │ ├── printf.c │ │ ├── secure_getenv.c │ │ ├── strerror_r.c │ │ ├── strlcpy.c │ │ ├── supp-int.h │ │ ├── t_base64.c │ │ ├── t_hashtab.c │ │ ├── t_hex.c │ │ ├── t_json.c │ │ ├── t_k5buf.c │ │ ├── t_path.c │ │ ├── t_unal.c │ │ ├── t_utf16.c │ │ ├── t_utf8.c │ │ ├── threads.c │ │ ├── utf8.c │ │ ├── utf8_conv.c │ │ └── zap.c │ ├── t_array.pm │ ├── t_bimap.pm │ ├── t_enum.pm │ ├── t_template.pm │ ├── t_tsenum.pm │ ├── testrealm.py │ ├── trim-valgrind-logs │ ├── valgrind-suppressions │ ├── verto │ │ ├── Makefile.in │ │ ├── README │ │ ├── Symbols.ev │ │ ├── deps │ │ ├── ev.c │ │ ├── ev.h │ │ ├── ev_poll.c │ │ ├── ev_select.c │ │ ├── ev_vars.h │ │ ├── ev_win32.c │ │ ├── ev_wrap.h │ │ ├── libverto.exports │ │ ├── module.c │ │ ├── module.h │ │ ├── verto-k5ev.c │ │ ├── verto-libev.c │ │ ├── verto-module.h │ │ ├── verto.c │ │ └── verto.h │ ├── windows │ │ ├── Makefile.in │ │ └── libecho.c │ └── wsgiref-kdcproxy.py │ ├── wconfig.c │ └── windows │ ├── Makefile.in │ ├── README │ ├── include │ ├── leasherr.h │ ├── leashinfo.h │ ├── leashwin.h │ ├── loadfuncs-com_err.h │ ├── loadfuncs-krb5.h │ ├── loadfuncs-leash.h │ ├── loadfuncs-lsa.h │ ├── loadfuncs-profile.h │ └── loadfuncs.h │ ├── installer │ └── wix │ │ ├── Binary │ │ ├── bannrbmp.bmp │ │ ├── completi.ico │ │ ├── custicon.ico │ │ ├── dlgbmp.bmp │ │ ├── exclamic.ico │ │ ├── info.bmp │ │ ├── insticon.ico │ │ ├── new.bmp │ │ ├── removico.ico │ │ ├── repairic.ico │ │ └── up.bmp │ │ ├── Makefile │ │ ├── athena │ │ └── krb5.ini │ │ ├── config.wxi │ │ ├── custom │ │ ├── custom.cpp │ │ └── custom.h │ │ ├── features.wxi │ │ ├── files.wxi │ │ ├── kfw.wxs │ │ ├── krb5.ini │ │ ├── lang │ │ ├── config_1033.wxi │ │ ├── license.rtf │ │ ├── strings_1033.wxl │ │ └── ui_1033.wxi │ │ ├── msi-deployment-guide.txt │ │ ├── platform.wxi │ │ ├── property.wxi │ │ ├── runtime.wxi │ │ ├── runtime_debug.wxi │ │ └── site-local.wxi │ ├── kerberos.ver │ ├── kfwlogon │ ├── Makefile.in │ ├── kfwcommon.c │ ├── kfwcpcc.c │ ├── kfwlogon.c │ ├── kfwlogon.def │ └── kfwlogon.h │ ├── leash │ ├── KrbListTickets.cpp │ ├── Leash.cpp │ ├── Leash.h │ ├── Leash.rc │ ├── LeashAboutBox.cpp │ ├── LeashAboutBox.h │ ├── LeashDebugWindow.cpp │ ├── LeashDebugWindow.h │ ├── LeashDoc.cpp │ ├── LeashDoc.h │ ├── LeashFrame.cpp │ ├── LeashFrame.h │ ├── LeashMessageBox.cpp │ ├── LeashMessageBox.h │ ├── LeashUIApplication.cpp │ ├── LeashUIApplication.h │ ├── LeashUICommandHandler.cpp │ ├── LeashUICommandHandler.h │ ├── LeashView.cpp │ ├── LeashView.h │ ├── Lglobals.h │ ├── MainFrm.cpp │ ├── MainFrm.h │ ├── Makefile.in │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── htmlhelp │ │ ├── Images │ │ │ ├── Change_Password.PNG │ │ │ ├── Destroy_Ticket.PNG │ │ │ ├── Get_Ticket.PNG │ │ │ ├── Home_Tab.PNG │ │ │ ├── Make_Default.PNG │ │ │ ├── Options_Tab.PNG │ │ │ ├── Renew_Ticket.PNG │ │ │ └── checkbox.png │ │ ├── Index.hhk │ │ ├── Leash.css │ │ ├── MITKerberosHelp.hhp │ │ ├── Makefile.in │ │ ├── TOC.hhc │ │ └── html │ │ │ ├── Change_Password.htm │ │ │ ├── Command_Line.htm │ │ │ ├── Debugging.htm │ │ │ ├── Destroy_Tickets.htm │ │ │ ├── Encryption_Types.htm │ │ │ ├── FAQ.htm │ │ │ ├── Forget_Password.htm │ │ │ ├── Forget_Principals.htm │ │ │ ├── Get_Tickets.htm │ │ │ ├── Getting_Started.htm │ │ │ ├── Glossary.htm │ │ │ ├── Home_Tab.htm │ │ │ ├── How_Kerberos_Works.htm │ │ │ ├── KCPYTKT.htm │ │ │ ├── KDESTROY.htm │ │ │ ├── KINIT.htm │ │ │ ├── KLIST.htm │ │ │ ├── KPASSWD.htm │ │ │ ├── KSWITCH.htm │ │ │ ├── KVNO.htm │ │ │ ├── Kerberos.htm │ │ │ ├── Kerberos_Terminology.htm │ │ │ ├── Keyboard_Shortcuts.htm │ │ │ ├── MS2MIT.htm │ │ │ ├── Make_Default.htm │ │ │ ├── Manage_Multiple_Principals.htm │ │ │ ├── Options_Tab.htm │ │ │ ├── Password_Tips.htm │ │ │ ├── Passwords.htm │ │ │ ├── Principals.htm │ │ │ ├── Renew_Tickets.htm │ │ │ ├── Renew_Tickets2.html │ │ │ ├── Report_Bugs.htm │ │ │ ├── Ticket_Settings.htm │ │ │ ├── Tickets.htm │ │ │ ├── Troubleshooting.htm │ │ │ ├── Using_Leash_Menus.htm │ │ │ └── View_Tickets.htm │ ├── kfwribbon.xml │ ├── reminder.h │ ├── res │ │ ├── Leash.ico │ │ ├── Leash.rc2 │ │ ├── Leash2.ico │ │ ├── Leash_Doc.ico │ │ ├── Leash_tickets_green.ico │ │ ├── Leash_tickets_orange.ico │ │ ├── Leash_tickets_out.ico │ │ ├── Leash_tickets_red.ico │ │ ├── Leash_tkt_green.ico │ │ ├── Leash_tkt_orange.ico │ │ ├── Leash_tkt_red.ico │ │ ├── Leash_toolbar.bmp │ │ ├── Leash_user_green.ico │ │ ├── Leash_user_orange.ico │ │ ├── Leash_user_out.ico │ │ ├── Leash_user_red.ico │ │ ├── address.ico │ │ ├── cpwlarge.bmp │ │ ├── cursor1.cur │ │ ├── destroy.ico │ │ ├── destroy_disabled.ico │ │ ├── destroylarge.bmp │ │ ├── encryption.ico │ │ ├── exportlarge.bmp │ │ ├── getticketlarge.bmp │ │ ├── import.bmp │ │ ├── importlarge.bmp │ │ ├── key.ico │ │ ├── makedefaultlarge.bmp │ │ ├── new.ico │ │ ├── new_disabled.ico │ │ ├── newlarge.bmp │ │ ├── openlarge.bmp │ │ ├── password.ico │ │ ├── password_disabled.ico │ │ ├── refresh.ico │ │ ├── refresh_disabled.ico │ │ ├── renew.ico │ │ ├── renew_disabled.ico │ │ ├── renewlarge.bmp │ │ ├── status_grayK.ico │ │ ├── status_greenK.ico │ │ ├── status_redK.ico │ │ ├── status_yelloK.ico │ │ ├── sync.ico │ │ └── sync_disabled.ico │ ├── resource.h │ └── ver.rc │ ├── leashdll │ ├── Makefile.in │ ├── krb5routines.c │ ├── leash-int.h │ ├── leashdll.c │ ├── leashdll.h │ ├── leasherr.c │ ├── leasherr.et │ ├── leashids.h │ ├── leashw32.def │ ├── lsh_pwd.c │ ├── lsh_pwd.rc │ ├── lshfunc.c │ ├── lshutil.cpp │ ├── reminder.h │ ├── res │ │ ├── islogo.bmp │ │ └── leash.ico │ ├── resource.h │ ├── timesync.c │ ├── ver.rc │ ├── winerr.c │ └── winutil.c │ ├── lib │ ├── Makefile.in │ ├── cacheapi.h │ └── loadfuncs.c │ ├── ms2mit │ ├── Makefile.in │ ├── mit2ms.c │ └── ms2mit.c │ ├── version.rc │ └── winlevel.h ├── libssh ├── .arcconfig ├── .clang-format ├── .editorconfig ├── AUTHORS ├── BSD ├── CHANGELOG ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── CPackConfig.cmake ├── CTestConfig.cmake ├── CompilerChecks.cmake ├── ConfigureChecks.cmake ├── DefineOptions.cmake ├── INSTALL ├── README ├── README.mbedtls ├── README.md ├── cmake │ ├── Modules │ │ ├── AddCCompilerFlag.cmake │ │ ├── AddCMockaTest.cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── CheckCCompilerFlagSSP.cmake │ │ ├── CodeCoverage.cmake │ │ ├── DefineCMakeDefaults.cmake │ │ ├── DefineCompilerFlags.cmake │ │ ├── DefinePlatformDefaults.cmake │ │ ├── ExtractSymbols.cmake │ │ ├── FindABIMap.cmake │ │ ├── FindArgp.cmake │ │ ├── FindCMocka.cmake │ │ ├── FindGCrypt.cmake │ │ ├── FindGSSAPI.cmake │ │ ├── FindMbedTLS.cmake │ │ ├── FindNSIS.cmake │ │ ├── FindNaCl.cmake │ │ ├── Findsofthsm.cmake │ │ ├── GenerateMap.cmake │ │ ├── GetFilesList.cmake │ │ └── MacroEnsureOutOfSourceBuild.cmake │ └── Toolchain-cross-m32.cmake ├── config.h.cmake ├── doc │ ├── CMakeLists.txt │ ├── README.gitlab.freebsd.md │ ├── authentication.dox │ ├── command.dox │ ├── curve25519-sha256@libssh.org.txt │ ├── doc_coverage.sh │ ├── forwarding.dox │ ├── guided_tour.dox │ ├── introduction.dox │ ├── linking.dox │ ├── mainpage.dox │ ├── pkcs11.dox │ ├── scp.dox │ ├── sftp.dox │ ├── sftp_aio.dox │ ├── shell.dox │ ├── tbd.dox │ ├── that_style │ │ ├── LICENSE │ │ ├── README.md │ │ ├── header.html │ │ ├── img │ │ │ ├── doc.svg │ │ │ ├── folderclosed.svg │ │ │ ├── folderopen.svg │ │ │ ├── mag_glass.svg │ │ │ ├── nav_edge_inter.svg │ │ │ ├── nav_edge_left.svg │ │ │ ├── nav_edge_right.svg │ │ │ ├── splitbar_handle.svg │ │ │ ├── sync_off.png │ │ │ └── sync_on.png │ │ ├── js │ │ │ └── striped_bg.js │ │ └── that_style.css │ └── threading.dox ├── examples │ ├── CMakeLists.txt │ ├── authentication.c │ ├── connect_ssh.c │ ├── examples_common.h │ ├── exec.c │ ├── keygen.c │ ├── keygen2.c │ ├── knownhosts.c │ ├── libssh_scp.c │ ├── libsshpp.cpp │ ├── libsshpp_noexcept.cpp │ ├── proxy.c │ ├── sample_sftpserver.c │ ├── samplesftp.c │ ├── samplesshd-cb.c │ ├── samplesshd-kbdint.c │ ├── scp_download.c │ ├── senddata.c │ ├── ssh_X11_client.c │ ├── ssh_client.c │ ├── ssh_server.c │ ├── sshd_direct-tcpip.c │ └── sshnetcat.c ├── include │ ├── CMakeLists.txt │ └── libssh │ │ ├── CMakeLists.txt │ │ ├── agent.h │ │ ├── auth.h │ │ ├── bignum.h │ │ ├── bind.h │ │ ├── bind_config.h │ │ ├── blf.h │ │ ├── buffer.h │ │ ├── bytearray.h │ │ ├── callbacks.h │ │ ├── chacha.h │ │ ├── chacha20-poly1305-common.h │ │ ├── channels.h │ │ ├── config.h │ │ ├── config_parser.h │ │ ├── crypto.h │ │ ├── curve25519.h │ │ ├── dh-gex.h │ │ ├── dh.h │ │ ├── ecdh.h │ │ ├── ed25519.h │ │ ├── fe25519.h │ │ ├── ge25519.h │ │ ├── gssapi.h │ │ ├── kex.h │ │ ├── keys.h │ │ ├── knownhosts.h │ │ ├── legacy.h │ │ ├── libcrypto.h │ │ ├── libgcrypt.h │ │ ├── libmbedcrypto.h │ │ ├── libssh.h │ │ ├── libssh_version.h.cmake │ │ ├── libsshpp.hpp │ │ ├── messages.h │ │ ├── misc.h │ │ ├── options.h │ │ ├── packet.h │ │ ├── pcap.h │ │ ├── pki.h │ │ ├── pki_priv.h │ │ ├── poll.h │ │ ├── poly1305.h │ │ ├── priv.h │ │ ├── sc25519.h │ │ ├── scp.h │ │ ├── server.h │ │ ├── session.h │ │ ├── sftp.h │ │ ├── sftp_priv.h │ │ ├── sftpserver.h │ │ ├── socket.h │ │ ├── ssh2.h │ │ ├── string.h │ │ ├── threads.h │ │ ├── token.h │ │ └── wrapper.h ├── libssh.pc.cmake ├── src │ ├── ABI │ │ ├── current │ │ ├── libssh-4.10.0.symbols │ │ ├── libssh-4.10.1.symbols │ │ ├── libssh-4.10.2.symbols │ │ ├── libssh-4.10.3.symbols │ │ ├── libssh-4.5.0.symbols │ │ ├── libssh-4.5.1.symbols │ │ ├── libssh-4.6.0.symbols │ │ ├── libssh-4.7.0.symbols │ │ ├── libssh-4.7.1.symbols │ │ ├── libssh-4.7.2.symbols │ │ ├── libssh-4.7.3.symbols │ │ ├── libssh-4.7.4.symbols │ │ ├── libssh-4.8.0.symbols │ │ ├── libssh-4.8.1.symbols │ │ ├── libssh-4.9.0.symbols │ │ ├── libssh-4.9.1.symbols │ │ ├── libssh-4.9.2.symbols │ │ ├── libssh-4.9.3.symbols │ │ ├── libssh-4.9.4.symbols │ │ ├── libssh-4.9.5.symbols │ │ └── libssh-4.9.6.symbols │ ├── CMakeLists.txt │ ├── agent.c │ ├── auth.c │ ├── base64.c │ ├── bignum.c │ ├── bind.c │ ├── bind_config.c │ ├── buffer.c │ ├── callbacks.c │ ├── chachapoly.c │ ├── channels.c │ ├── client.c │ ├── config.c │ ├── config_parser.c │ ├── connect.c │ ├── connector.c │ ├── crypto_common.c │ ├── curve25519.c │ ├── dh-gex.c │ ├── dh.c │ ├── dh_crypto.c │ ├── dh_key.c │ ├── ecdh.c │ ├── ecdh_crypto.c │ ├── ecdh_gcrypt.c │ ├── ecdh_mbedcrypto.c │ ├── error.c │ ├── external │ │ ├── bcrypt_pbkdf.c │ │ ├── blowfish.c │ │ ├── chacha.c │ │ ├── curve25519_ref.c │ │ ├── ed25519.c │ │ ├── fe25519.c │ │ ├── ge25519.c │ │ ├── ge25519_base.data │ │ ├── poly1305.c │ │ └── sc25519.c │ ├── gcrypt_missing.c │ ├── getpass.c │ ├── getrandom_crypto.c │ ├── getrandom_gcrypt.c │ ├── getrandom_mbedcrypto.c │ ├── gssapi.c │ ├── gzip.c │ ├── init.c │ ├── kdf.c │ ├── kex.c │ ├── known_hosts.c │ ├── knownhosts.c │ ├── legacy.c │ ├── libcrypto-compat.h │ ├── libcrypto.c │ ├── libgcrypt.c │ ├── libmbedcrypto.c │ ├── libssh.map │ ├── log.c │ ├── match.c │ ├── mbedcrypto-compat.h │ ├── mbedcrypto_missing.c │ ├── md_crypto.c │ ├── md_gcrypt.c │ ├── md_mbedcrypto.c │ ├── messages.c │ ├── misc.c │ ├── options.c │ ├── packet.c │ ├── packet_cb.c │ ├── packet_crypt.c │ ├── pcap.c │ ├── pki.c │ ├── pki_container_openssh.c │ ├── pki_crypto.c │ ├── pki_ed25519.c │ ├── pki_ed25519_common.c │ ├── pki_gcrypt.c │ ├── pki_mbedcrypto.c │ ├── poll.c │ ├── scp.c │ ├── server.c │ ├── session.c │ ├── sftp.c │ ├── sftp_aio.c │ ├── sftp_common.c │ ├── sftpserver.c │ ├── socket.c │ ├── string.c │ ├── threads.c │ ├── threads │ │ ├── libcrypto.c │ │ ├── libgcrypt.c │ │ ├── mbedtls.c │ │ ├── noop.c │ │ ├── pthread.c │ │ └── winlocks.c │ ├── token.c │ ├── ttyopts.c │ └── wrapper.c └── tests │ ├── CMakeLists.txt │ ├── benchmarks │ ├── CMakeLists.txt │ ├── bench1.sh │ ├── bench2.sh │ ├── bench_raw.c │ ├── bench_scp.c │ ├── bench_sftp.c │ ├── benchmarks.c │ ├── benchmarks.h │ └── latency.c │ ├── chmodtest.c │ ├── chroot_wrapper.c │ ├── client │ ├── CMakeLists.txt │ ├── torture_algorithms.c │ ├── torture_auth.c │ ├── torture_auth_cert.c │ ├── torture_auth_common.c │ ├── torture_auth_pkcs11.c │ ├── torture_client_callbacks.c │ ├── torture_client_config.c │ ├── torture_client_global_requests.c │ ├── torture_connect.c │ ├── torture_forward.c │ ├── torture_gssapi_auth.c │ ├── torture_hostkey.c │ ├── torture_knownhosts.c │ ├── torture_knownhosts_verify.c │ ├── torture_proxycommand.c │ ├── torture_proxyjump.c │ ├── torture_rekey.c │ ├── torture_request_env.c │ ├── torture_request_pty_modes.c │ ├── torture_scp.c │ ├── torture_session.c │ ├── torture_sftp_aio.c │ ├── torture_sftp_benchmark.c │ ├── torture_sftp_canonicalize_path.c │ ├── torture_sftp_dir.c │ ├── torture_sftp_expand_path.c │ ├── torture_sftp_ext.c │ ├── torture_sftp_fsync.c │ ├── torture_sftp_hardlink.c │ ├── torture_sftp_home_directory.c │ ├── torture_sftp_init.c │ ├── torture_sftp_limits.c │ ├── torture_sftp_packet_read.c │ ├── torture_sftp_read.c │ ├── torture_sftp_rename.c │ └── torture_sftp_setstat.c │ ├── cmdline.c │ ├── ctest-default.cmake │ ├── etc │ ├── group.in │ ├── hosts.in │ ├── pam.d │ │ └── sshd.in │ ├── pam_matrix_passdb.in │ ├── passwd.in │ └── shadow.in │ ├── external_override │ ├── CMakeLists.txt │ ├── chacha20_override.c │ ├── chacha20_override.h │ ├── curve25519_override.c │ ├── curve25519_override.h │ ├── ed25519_override.c │ ├── ed25519_override.h │ ├── poly1305_override.c │ ├── poly1305_override.h │ └── torture_override.c │ ├── fs_wrapper.c │ ├── fuzz │ ├── CMakeLists.txt │ ├── README.md │ ├── fuzzer.c │ ├── ssh_bind_config_fuzzer.c │ ├── ssh_client_config_fuzzer.c │ ├── ssh_client_fuzzer.c │ ├── ssh_client_fuzzer_corpus │ │ └── 0f9d75a6c1d365115772a502d42b6e48f453198a │ ├── ssh_known_hosts_fuzzer.c │ ├── ssh_known_hosts_fuzzer_corpus │ │ └── d7c0eade3f3b70d94b1a7090e09eb8607da0ace4 │ ├── ssh_privkey_fuzzer.c │ ├── ssh_privkey_fuzzer_corpus │ │ └── 855ce609b52aec530bf631a78da7038bed99040a │ ├── ssh_pubkey_fuzzer.c │ ├── ssh_pubkey_fuzzer_corpus │ │ └── b2c9f01394a2835b2cd7c520395a4977143e8d23 │ ├── ssh_server_fuzzer.c │ └── ssh_server_fuzzer_corpus │ │ └── fd7bd24a85e712fb59159a512b69d34ca21c8383 │ ├── generate.py │ ├── gss │ └── kdcsetup.sh │ ├── keys │ ├── certauth │ │ ├── id_rsa │ │ ├── id_rsa-cert.pub │ │ └── id_rsa.pub │ ├── id_ecdsa │ ├── id_ecdsa.pub │ ├── id_ed25519 │ ├── id_ed25519.pub │ ├── id_rsa │ ├── id_rsa.pub │ ├── id_rsa_protected │ ├── id_rsa_protected.pub │ ├── pkcs11 │ │ ├── id_pkcs11_ecdsa_256 │ │ ├── id_pkcs11_ecdsa_256.pub │ │ ├── id_pkcs11_ecdsa_256_openssh.pub │ │ ├── id_pkcs11_ecdsa_384 │ │ ├── id_pkcs11_ecdsa_384.pub │ │ ├── id_pkcs11_ecdsa_384_openssh.pub │ │ ├── id_pkcs11_ecdsa_521 │ │ ├── id_pkcs11_ecdsa_521.pub │ │ ├── id_pkcs11_ecdsa_521_openssh.pub │ │ ├── id_pkcs11_ed25519 │ │ ├── id_pkcs11_ed25519.pub │ │ ├── id_pkcs11_rsa │ │ ├── id_pkcs11_rsa.pub │ │ └── id_pkcs11_rsa_openssh.pub │ ├── ssh_host_ecdsa_key │ ├── ssh_host_ecdsa_key.pub │ ├── ssh_host_key │ ├── ssh_host_key.pub │ ├── ssh_host_rsa_key │ ├── ssh_host_rsa_key.pub │ └── user_ca │ ├── pkcs11 │ └── setup-softhsm-tokens.sh │ ├── pkd │ ├── CMakeLists.txt │ ├── pkd_client.h │ ├── pkd_daemon.c │ ├── pkd_daemon.h │ ├── pkd_hello.c │ ├── pkd_keyutil.c │ ├── pkd_keyutil.h │ ├── pkd_util.c │ └── pkd_util.h │ ├── server │ ├── CMakeLists.txt │ ├── test_server │ │ ├── CMakeLists.txt │ │ ├── default_cb.c │ │ ├── default_cb.h │ │ ├── main.c │ │ ├── sftpserver_cb.c │ │ ├── test_server.c │ │ ├── test_server.h │ │ ├── testserver_common.c │ │ └── testserver_common.h │ ├── torture_gssapi_server_auth.c │ ├── torture_gssapi_server_auth_cb.c │ ├── torture_gssapi_server_delegation.c │ ├── torture_server_algorithms.c │ ├── torture_server_auth_kbdint.c │ ├── torture_server_config.c │ ├── torture_server_default.c │ └── torture_sftpserver.c │ ├── ssh_ping.c │ ├── suppressions │ └── lsan.supp │ ├── test_socket.c │ ├── tests_config.h.cmake │ ├── torture.c │ ├── torture.h │ ├── torture_cmocka.c │ ├── torture_cmocka.h │ ├── torture_key.c │ ├── torture_key.h │ ├── torture_pki.c │ ├── torture_pki.h │ ├── unittests │ ├── CMakeLists.txt │ ├── hello world.sh │ ├── torture_bignum.c │ ├── torture_bind_config.c │ ├── torture_buffer.c │ ├── torture_bytearray.c │ ├── torture_callbacks.c │ ├── torture_channel.c │ ├── torture_config.c │ ├── torture_config_match_localnetwork.c │ ├── torture_crypto.c │ ├── torture_hashes.c │ ├── torture_init.c │ ├── torture_isipaddr.c │ ├── torture_keyfiles.c │ ├── torture_knownhosts_parsing.c │ ├── torture_list.c │ ├── torture_misc.c │ ├── torture_moduli.c │ ├── torture_options.c │ ├── torture_packet.c │ ├── torture_packet_filter.c │ ├── torture_pki.c │ ├── torture_pki_dsa.c │ ├── torture_pki_ecdsa.c │ ├── torture_pki_ecdsa_uri.c │ ├── torture_pki_ed25519.c │ ├── torture_pki_rsa.c │ ├── torture_pki_rsa_uri.c │ ├── torture_push_pop_dir.c │ ├── torture_rand.c │ ├── torture_server_x11.c │ ├── torture_session_keys.c │ ├── torture_temp_dir.c │ ├── torture_temp_file.c │ ├── torture_threads_buffer.c │ ├── torture_threads_crypto.c │ ├── torture_threads_init.c │ ├── torture_threads_pki_rsa.c │ ├── torture_tokens.c │ └── torture_unit_server.c │ └── valgrind.supp ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── ssh ├── __init__.pxd ├── __init__.py ├── _version.py ├── c_callbacks.pxd ├── c_legacy.pxd ├── c_sftp.pxd ├── c_ssh.pxd ├── c_ssh2.pxd ├── callbacks.c ├── callbacks.pxd ├── callbacks.pyx ├── channel.c ├── channel.pxd ├── channel.pyx ├── connector.c ├── connector.pxd ├── connector.pyx ├── error_codes.c ├── error_codes.pyx ├── event.c ├── event.pxd ├── event.pyx ├── exceptions.c ├── exceptions.pyx ├── key.c ├── key.pxd ├── key.pyx ├── keytypes.c ├── keytypes.pxd ├── keytypes.pyx ├── options.c ├── options.pxd ├── options.pyx ├── scp.c ├── scp.pxd ├── scp.pyx ├── session.c ├── session.pxd ├── session.pyx ├── sftp.c ├── sftp.pxd ├── sftp.pyx ├── sftp_attributes.c ├── sftp_attributes.pxd ├── sftp_attributes.pyx ├── sftp_handles.c ├── sftp_handles.pxd ├── sftp_handles.pyx ├── sftp_statvfs.c ├── sftp_statvfs.pxd ├── sftp_statvfs.pyx ├── utils.c ├── utils.pxd └── utils.pyx ├── tests ├── __init__.py ├── base_case.py ├── test_channel.py ├── test_connector.py ├── test_event.py ├── test_keys.py ├── test_keytypes.py ├── test_session.py ├── test_sftp.py └── unit_test_key.pub ├── versioneer.py └── zlib-1.3.1 ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── LICENSE ├── Makefile ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── gcc_gvmat64 │ └── gvmat64.S ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── minizip │ ├── Makefile │ ├── Makefile.am │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── configure.ac │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── miniunzip.1 │ ├── minizip.1 │ ├── minizip.c │ ├── minizip.pc.in │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── nuget │ ├── nuget.csproj │ └── nuget.sln ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ ├── pufftest.c │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ └── zlibvc.vcxproj.filters │ ├── vc11 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc12 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc14 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc17 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ └── vc9 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── crc-doc.1.0.pdf ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── gznorm.c ├── zlib_how.html ├── zpipe.c ├── zran.c └── zran.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── os400 ├── README400 ├── bndsrc ├── make.sh └── zlib.inc ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zutil.c └── zutil.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/COPYING -------------------------------------------------------------------------------- /Changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/Changelog.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/README.rst -------------------------------------------------------------------------------- /_setup_libssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/_setup_libssh.py -------------------------------------------------------------------------------- /ci/appveyor/build_krb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/build_krb.bat -------------------------------------------------------------------------------- /ci/appveyor/build_ssh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/build_ssh.bat -------------------------------------------------------------------------------- /ci/appveyor/build_zlib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/build_zlib.bat -------------------------------------------------------------------------------- /ci/appveyor/fix_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/fix_version.py -------------------------------------------------------------------------------- /ci/appveyor/import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/import_test.py -------------------------------------------------------------------------------- /ci/appveyor/pypi_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/appveyor/pypi_upload.py -------------------------------------------------------------------------------- /ci/build-manylinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/build-manylinux.sh -------------------------------------------------------------------------------- /ci/build-wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/build-wheels.sh -------------------------------------------------------------------------------- /ci/integration_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/integration_tests/__init__.py -------------------------------------------------------------------------------- /ci/integration_tests/base_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/integration_tests/base_case.py -------------------------------------------------------------------------------- /ci/integration_tests/embedded_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/integration_tests/embedded_server/principals.tmpl: -------------------------------------------------------------------------------- 1 | {{user}} 2 | -------------------------------------------------------------------------------- /ci/integration_tests/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/integration_tests/test_sftp.py -------------------------------------------------------------------------------- /ci/integration_tests/unit_test_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/integration_tests/unit_test_key -------------------------------------------------------------------------------- /ci/osx-wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ci/osx-wheel.sh -------------------------------------------------------------------------------- /doc/Changelog.rst: -------------------------------------------------------------------------------- 1 | ../Changelog.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/callbacks.rst -------------------------------------------------------------------------------- /doc/channel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/channel.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/connector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/connector.rst -------------------------------------------------------------------------------- /doc/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/event.rst -------------------------------------------------------------------------------- /doc/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/exceptions.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/key.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/key.rst -------------------------------------------------------------------------------- /doc/keytypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/keytypes.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/options.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/scp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/scp.rst -------------------------------------------------------------------------------- /doc/session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/session.rst -------------------------------------------------------------------------------- /doc/sftp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/sftp.rst -------------------------------------------------------------------------------- /doc/sftp_attributes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/sftp_attributes.rst -------------------------------------------------------------------------------- /doc/sftp_handles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/sftp_handles.rst -------------------------------------------------------------------------------- /doc/sftp_statvfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/sftp_statvfs.rst -------------------------------------------------------------------------------- /doc/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/doc/utils.rst -------------------------------------------------------------------------------- /examples/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/examples/exec.py -------------------------------------------------------------------------------- /examples/keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/examples/keygen.py -------------------------------------------------------------------------------- /krb5-1.21.3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/NOTICE -------------------------------------------------------------------------------- /krb5-1.21.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/README -------------------------------------------------------------------------------- /krb5-1.21.3/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/aclocal.m4 -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/appl/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/sample/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/sample/sclient/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/sample/sserver/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/simple/client/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/simple/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/simple/server/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/appl/user_user/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/build-tools/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/ccapi/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/common/win/OldCC/ccutil.def: -------------------------------------------------------------------------------- 1 | ;LIBRARY COMERR32 2 | HEAPSIZE 8192 3 | 4 | EXPORTS 5 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/lib/ccapi.exports: -------------------------------------------------------------------------------- 1 | cc_initialize 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/lib/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/ccapi/lib/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/lib/libkrb5-ccapi.exports: -------------------------------------------------------------------------------- 1 | cc_close 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/lib/unix/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/server/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/ccapi/server/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/server/unix/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/test/deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/ccapi/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/ccapi/test/main.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/kinit/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/kinit/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/klist/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/klist/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/ksu/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/ksu/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/ksu/ksu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/ksu/ksu.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/ksu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/ksu/main.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/kvno/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/kvno/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/clients/kvno/kvno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/clients/kvno/kvno.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/config-files/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/config-files/mech: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config-files/mech -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/config.guess -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/config.sub -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/install-sh -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/lib.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/lib.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/libnodeps.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/libnodeps.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/libnover.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/libnover.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/libobj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/libobj.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/libpriv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/libpriv.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/pkg.m4 -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/post.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/post.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/pre.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/ren2long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/ren2long -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/ren2long.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/ren2long.awk -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/rm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/rm.bat -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/shlib.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/shlib.conf -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/wconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/wconfig.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/win-post.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/win-post.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/config/win-pre.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/config/win-pre.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/configure -------------------------------------------------------------------------------- /krb5-1.21.3/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/configure.ac -------------------------------------------------------------------------------- /krb5-1.21.3/src/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/doc/Doxyfile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/doc/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/doc/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/doc/version.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/doc/version.py.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/adm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/adm_proto.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/copyright.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/gssapi.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/iprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/iprop.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/iprop_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/iprop_hdr.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-base64.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-buf.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-cmocka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-cmocka.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-der.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-der.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-err.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-hex.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-input.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-int.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-json.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-plugin.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-queue.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-spake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-spake.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-thread.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-tls.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-trace.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-utf8.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/k5-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/k5-util.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/kcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/kcm.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/kdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/kdb.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/kdb_kt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/kdb_kt.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/kdb_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/kdb_log.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/krad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/krad.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/krb5.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/osconf.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/osconf.hin -------------------------------------------------------------------------------- /krb5-1.21.3/src/include/win-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/include/win-mac.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/cli/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/cli/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/cli/kadmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/cli/kadmin.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/cli/kadmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/cli/kadmin.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/cli/keytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/cli/keytab.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/dbutil/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/dbutil/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/ktutil/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/ktutil/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kadmin/server/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kadmin/server/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/authind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/authind.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/cammac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/cammac.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/dispatch.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/do_as_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/do_as_req.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/do_tgs_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/do_tgs_req.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/extern.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/extern.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/fast_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/fast_util.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc5_err.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc5_err.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_audit.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_audit.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_authdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_authdata.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_log.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_preauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_preauth.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_transit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_transit.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_util.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/kdc_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/kdc_util.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/main.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/ndr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/ndr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/policy.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/policy.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/realm_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/realm_data.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/replay.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/reqstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/reqstate.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/rtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/rtest.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/rtest.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/rtest.good -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/rtscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/rtscript -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/t_bigreply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/t_bigreply.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/t_emptytgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/t_emptytgt.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/t_ndr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/t_ndr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/t_replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/t_replay.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/t_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/t_workers.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/kdc/tgs_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kdc/tgs_policy.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kprop.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kprop.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kprop_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kprop_util.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kpropd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kpropd.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kpropd_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kpropd_rpc.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/kprop/kproplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/kprop/kproplog.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/apputils/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/apputils/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/comerr32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/comerr32.def -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/crypto/ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/crypto/ISSUES -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/crypto/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/crypto/krb/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/crypto/krb/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/gssapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/gssapi/LICENSE -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/gssapi/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/gssapi/spnego/mech_spnego.exports: -------------------------------------------------------------------------------- 1 | gss_mech_initialize 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/gssapi32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/gssapi32.def -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/admin.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/clnt/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/clnt/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/logger.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/srv/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/srv/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kadm5/t_kadm5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kadm5/t_kadm5.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/adb_err.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/adb_err.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/iprop.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/iprop.x -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/iprop_xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/iprop_xdr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/kdb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/kdb5.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/kdb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/kdb5.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/kdb5int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/kdb5int.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/kdb_cpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/kdb_cpw.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/kdb_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/kdb_log.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/keytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/keytab.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/kdb/t_ulog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/kdb/t_ulog.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/attr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/attrset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/attrset.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/client.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/code.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/internal.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/packet.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/remote.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_attr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_client.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_code.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_daemon.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_packet.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_remote.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_test.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krad/t_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krad/t_test.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5.rc -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/asn.1/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/asn.1/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/krb/chpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/krb/chpw.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/krb/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/krb/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/krb/fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/krb/fast.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/krb/fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/krb/fast.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/krb/pac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/krb/pac.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/os/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/os/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5/os/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5/os/trace.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/krb5_32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/krb5_32.def -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/auth_gss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/auth_gss.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/auth_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/auth_none.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/auth_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/auth_unix.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/clnt_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/clnt_raw.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/clnt_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/clnt_tcp.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/clnt_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/clnt_udp.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/dyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/dyn.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/dyn.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/dynP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/dynP.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/dyntest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/dyntest.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/getrpcent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/getrpcent.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/gssrpcint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/gssrpcint.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/pmap_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/pmap_clnt.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/pmap_prot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/pmap_prot.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/pmap_rmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/pmap_rmt.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/rpc_prot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/rpc_prot.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc_auth.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc_raw.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc_run.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc_tcp.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/svc_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/svc_udp.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_alloc.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_array.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_float.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_mem.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_rec.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/rpc/xdr_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/rpc/xdr_stdio.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/win_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/win_glue.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/lib/xpprof32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/lib/xpprof32.def -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/README -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/dot.k5identity.5: -------------------------------------------------------------------------------- 1 | .so man5/k5identity.5 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/dot.k5login.5: -------------------------------------------------------------------------------- 1 | .so man5/k5login.5 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/k5identity.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/k5identity.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/k5login.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/k5login.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/k5srvutil.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/k5srvutil.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kadm5.acl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kadm5.acl.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kadmin.local.8: -------------------------------------------------------------------------------- 1 | .so man1/kadmin.1 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kadmin.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kadmin.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kadmind.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kadmind.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kdb5_util.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kdb5_util.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kdc.conf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kdc.conf.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kdestroy.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kdestroy.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kerberos.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kerberos.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kinit.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kinit.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/klist.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/klist.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kpasswd.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kpasswd.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kprop.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kprop.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kpropd.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kpropd.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kproplog.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kproplog.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/krb5-config.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/krb5-config.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/krb5.conf.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/krb5.conf.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/krb5kdc.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/krb5kdc.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/ksu.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/ksu.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kswitch.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kswitch.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/ktutil.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/ktutil.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/kvno.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/kvno.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/sclient.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/sclient.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/man/sserver.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/man/sserver.man -------------------------------------------------------------------------------- /krb5-1.21.3/src/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/patchlevel.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/audit/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/plugins/audit/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/audit/simple/k5audit.exports: -------------------------------------------------------------------------------- 1 | audit_simple_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/audit/test/k5audit_test.exports: -------------------------------------------------------------------------------- 1 | audit_test_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/authdata/greet_client/greet_client.exports: -------------------------------------------------------------------------------- 1 | authdata_client_0 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/authdata/greet_server/greet_server.exports: -------------------------------------------------------------------------------- 1 | kdcauthdata_greet_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kadm5_hook/test/kadm5_hook_test.exports: -------------------------------------------------------------------------------- 1 | kadm5_hook_test_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/db2/db2.exports: -------------------------------------------------------------------------------- 1 | kdb_function_table 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/db2/libdb2/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/db2/libdb2/test/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/ldap/kldap.exports: -------------------------------------------------------------------------------- 1 | kdb_function_table 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/lmdb/klmdb.exports: -------------------------------------------------------------------------------- 1 | kdb_function_table 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdb/test/test.exports: -------------------------------------------------------------------------------- 1 | kdb_function_table 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/kdcpolicy/test/kdcpolicy_test.exports: -------------------------------------------------------------------------------- 1 | kdcpolicy_test_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/preauth/otp/otp.exports: -------------------------------------------------------------------------------- 1 | kdcpreauth_otp_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/preauth/securid_sam2/deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/preauth/securid_sam2/securid_sam2.exports: -------------------------------------------------------------------------------- 1 | kdcpreauth_securid_sam2_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/preauth/spake/spake.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | 3 | clpreauth_spake_initvt 4 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/preauth/spake/t_krb5.conf: -------------------------------------------------------------------------------- 1 | [libdefaults] 2 | spake_preauth_groups = edwards25519 3 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/plugins/tls/k5tls/k5tls.exports: -------------------------------------------------------------------------------- 1 | tls_k5tls_initvt 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/po/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/po/de.po -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/po/en_US.po -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/po/ka.po -------------------------------------------------------------------------------- /krb5-1.21.3/src/po/mit-krb5.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/po/mit-krb5.pot -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/adata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/adata.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/README -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/debug.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/ktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/ktest.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/ktest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/ktest.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/asn.1/trval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/asn.1/trval.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/au_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/au_dict.json -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/conccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/conccache.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/create/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/create/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/dump.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/etinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/etinfo.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/forward.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/gcred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/gcred.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/gssapi/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/gssapi/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/hammer/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/hammer/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/hammer/pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/hammer/pp.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/hist.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/hooks.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/hrealm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/hrealm.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/icred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/icred.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/jsonwalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/jsonwalker.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/kcmserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/kcmserver.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/kdbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/kdbtest.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/localauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/localauth.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/misc/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/misc/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/plugorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/plugorder.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/rdreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/rdreq.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/replay.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/responder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/responder.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/s2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/s2p.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/s4u2proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/s4u2proxy.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/s4u2self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/s4u2self.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/shlib/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/shlib/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_audit.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_authdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_authdata.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_ccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_ccache.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_certauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_certauth.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_changepw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_changepw.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_dump.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_errmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_errmsg.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_general.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_hooks.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_inetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_inetd.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_iprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_iprop.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_kadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_kadmin.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_kdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_kdb.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_kdc_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_kdc_log.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_keydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_keydata.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_keytab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_keytab.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_kprop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_kprop.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_mkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_mkey.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_otp.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_pkinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_pkinit.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_policy.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_preauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_preauth.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_proxy.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_pwqual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_pwqual.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_rdreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_rdreq.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_referral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_referral.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_renew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_renew.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_renprinc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_renprinc.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_replay.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_salt.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_skew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_skew.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_sn2princ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_sn2princ.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_spake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_spake.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_tabdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_tabdump.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_u2u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_u2u.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/t_y2038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/t_y2038.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/test1.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/threads/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/threads/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/unlockiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/unlockiter.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/verify/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/verify/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/tests/verify/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/tests/verify/pkey.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/check-ac-syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/check-ac-syms -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/cstyle-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/cstyle-file.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/cstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/cstyle.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/def-check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/def-check.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/depfix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/depfix.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/deps: -------------------------------------------------------------------------------- 1 | # No dependencies here. 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/ISSUES -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/Makefile.in -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et.exp -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et.pbexp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et.pbexp -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et1.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et1.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et2.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et2.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et_c.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et_c.awk -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et_c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et_c.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et_h.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et_h.awk -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/et_h.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/et_h.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/test1.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/test1.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/et/test2.et: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/et/test2.et -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/exitsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/exitsleep.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/gen-map.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/gen-map.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/gen.pl -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/getsyms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/getsyms -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/getsyms.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/getsyms.sed -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/k5test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/k5test.py -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/lndir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/lndir -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/mkrel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/mkrel -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/profile/testmod/proftest.exports: -------------------------------------------------------------------------------- 1 | profile_module_init 2 | -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/data.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/error.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/help.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/listen.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/pager.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/parse.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/prompt.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/ss/ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/ss/ss.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/t_array.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/t_array.pm -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/t_bimap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/t_bimap.pm -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/t_enum.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/t_enum.pm -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/t_tsenum.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/t_tsenum.pm -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/verto/deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/verto/deps -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/verto/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/verto/ev.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/util/verto/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/util/verto/ev.h -------------------------------------------------------------------------------- /krb5-1.21.3/src/wconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/wconfig.c -------------------------------------------------------------------------------- /krb5-1.21.3/src/windows/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/krb5-1.21.3/src/windows/README -------------------------------------------------------------------------------- /krb5-1.21.3/src/windows/installer/wix/krb5.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libssh/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/.arcconfig -------------------------------------------------------------------------------- /libssh/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/.clang-format -------------------------------------------------------------------------------- /libssh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/.editorconfig -------------------------------------------------------------------------------- /libssh/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/AUTHORS -------------------------------------------------------------------------------- /libssh/BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/BSD -------------------------------------------------------------------------------- /libssh/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CHANGELOG -------------------------------------------------------------------------------- /libssh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CONTRIBUTING.md -------------------------------------------------------------------------------- /libssh/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/COPYING -------------------------------------------------------------------------------- /libssh/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CPackConfig.cmake -------------------------------------------------------------------------------- /libssh/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CTestConfig.cmake -------------------------------------------------------------------------------- /libssh/CompilerChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/CompilerChecks.cmake -------------------------------------------------------------------------------- /libssh/ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/ConfigureChecks.cmake -------------------------------------------------------------------------------- /libssh/DefineOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/DefineOptions.cmake -------------------------------------------------------------------------------- /libssh/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/INSTALL -------------------------------------------------------------------------------- /libssh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/README -------------------------------------------------------------------------------- /libssh/README.mbedtls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/README.mbedtls -------------------------------------------------------------------------------- /libssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/README.md -------------------------------------------------------------------------------- /libssh/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/config.h.cmake -------------------------------------------------------------------------------- /libssh/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/doc/authentication.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/authentication.dox -------------------------------------------------------------------------------- /libssh/doc/command.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/command.dox -------------------------------------------------------------------------------- /libssh/doc/doc_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/doc_coverage.sh -------------------------------------------------------------------------------- /libssh/doc/forwarding.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/forwarding.dox -------------------------------------------------------------------------------- /libssh/doc/guided_tour.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/guided_tour.dox -------------------------------------------------------------------------------- /libssh/doc/introduction.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/introduction.dox -------------------------------------------------------------------------------- /libssh/doc/linking.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/linking.dox -------------------------------------------------------------------------------- /libssh/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/mainpage.dox -------------------------------------------------------------------------------- /libssh/doc/pkcs11.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/pkcs11.dox -------------------------------------------------------------------------------- /libssh/doc/scp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/scp.dox -------------------------------------------------------------------------------- /libssh/doc/sftp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/sftp.dox -------------------------------------------------------------------------------- /libssh/doc/sftp_aio.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/sftp_aio.dox -------------------------------------------------------------------------------- /libssh/doc/shell.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/shell.dox -------------------------------------------------------------------------------- /libssh/doc/tbd.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/tbd.dox -------------------------------------------------------------------------------- /libssh/doc/that_style/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/that_style/LICENSE -------------------------------------------------------------------------------- /libssh/doc/that_style/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/that_style/README.md -------------------------------------------------------------------------------- /libssh/doc/threading.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/doc/threading.dox -------------------------------------------------------------------------------- /libssh/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/examples/authentication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/authentication.c -------------------------------------------------------------------------------- /libssh/examples/connect_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/connect_ssh.c -------------------------------------------------------------------------------- /libssh/examples/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/exec.c -------------------------------------------------------------------------------- /libssh/examples/keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/keygen.c -------------------------------------------------------------------------------- /libssh/examples/keygen2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/keygen2.c -------------------------------------------------------------------------------- /libssh/examples/knownhosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/knownhosts.c -------------------------------------------------------------------------------- /libssh/examples/libssh_scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/libssh_scp.c -------------------------------------------------------------------------------- /libssh/examples/libsshpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/libsshpp.cpp -------------------------------------------------------------------------------- /libssh/examples/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/proxy.c -------------------------------------------------------------------------------- /libssh/examples/samplesftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/samplesftp.c -------------------------------------------------------------------------------- /libssh/examples/samplesshd-cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/samplesshd-cb.c -------------------------------------------------------------------------------- /libssh/examples/scp_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/scp_download.c -------------------------------------------------------------------------------- /libssh/examples/senddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/senddata.c -------------------------------------------------------------------------------- /libssh/examples/ssh_X11_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/ssh_X11_client.c -------------------------------------------------------------------------------- /libssh/examples/ssh_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/ssh_client.c -------------------------------------------------------------------------------- /libssh/examples/ssh_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/ssh_server.c -------------------------------------------------------------------------------- /libssh/examples/sshnetcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/examples/sshnetcat.c -------------------------------------------------------------------------------- /libssh/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/include/libssh/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/agent.h -------------------------------------------------------------------------------- /libssh/include/libssh/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/auth.h -------------------------------------------------------------------------------- /libssh/include/libssh/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/bignum.h -------------------------------------------------------------------------------- /libssh/include/libssh/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/bind.h -------------------------------------------------------------------------------- /libssh/include/libssh/blf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/blf.h -------------------------------------------------------------------------------- /libssh/include/libssh/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/buffer.h -------------------------------------------------------------------------------- /libssh/include/libssh/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/chacha.h -------------------------------------------------------------------------------- /libssh/include/libssh/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/channels.h -------------------------------------------------------------------------------- /libssh/include/libssh/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/config.h -------------------------------------------------------------------------------- /libssh/include/libssh/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/crypto.h -------------------------------------------------------------------------------- /libssh/include/libssh/dh-gex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/dh-gex.h -------------------------------------------------------------------------------- /libssh/include/libssh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/dh.h -------------------------------------------------------------------------------- /libssh/include/libssh/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/ecdh.h -------------------------------------------------------------------------------- /libssh/include/libssh/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/ed25519.h -------------------------------------------------------------------------------- /libssh/include/libssh/fe25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/fe25519.h -------------------------------------------------------------------------------- /libssh/include/libssh/ge25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/ge25519.h -------------------------------------------------------------------------------- /libssh/include/libssh/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/gssapi.h -------------------------------------------------------------------------------- /libssh/include/libssh/kex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/kex.h -------------------------------------------------------------------------------- /libssh/include/libssh/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/keys.h -------------------------------------------------------------------------------- /libssh/include/libssh/legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/legacy.h -------------------------------------------------------------------------------- /libssh/include/libssh/libssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/libssh.h -------------------------------------------------------------------------------- /libssh/include/libssh/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/messages.h -------------------------------------------------------------------------------- /libssh/include/libssh/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/misc.h -------------------------------------------------------------------------------- /libssh/include/libssh/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/options.h -------------------------------------------------------------------------------- /libssh/include/libssh/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/packet.h -------------------------------------------------------------------------------- /libssh/include/libssh/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/pcap.h -------------------------------------------------------------------------------- /libssh/include/libssh/pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/pki.h -------------------------------------------------------------------------------- /libssh/include/libssh/pki_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/pki_priv.h -------------------------------------------------------------------------------- /libssh/include/libssh/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/poll.h -------------------------------------------------------------------------------- /libssh/include/libssh/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/poly1305.h -------------------------------------------------------------------------------- /libssh/include/libssh/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/priv.h -------------------------------------------------------------------------------- /libssh/include/libssh/sc25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/sc25519.h -------------------------------------------------------------------------------- /libssh/include/libssh/scp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/scp.h -------------------------------------------------------------------------------- /libssh/include/libssh/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/server.h -------------------------------------------------------------------------------- /libssh/include/libssh/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/session.h -------------------------------------------------------------------------------- /libssh/include/libssh/sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/sftp.h -------------------------------------------------------------------------------- /libssh/include/libssh/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/socket.h -------------------------------------------------------------------------------- /libssh/include/libssh/ssh2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/ssh2.h -------------------------------------------------------------------------------- /libssh/include/libssh/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/string.h -------------------------------------------------------------------------------- /libssh/include/libssh/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/threads.h -------------------------------------------------------------------------------- /libssh/include/libssh/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/token.h -------------------------------------------------------------------------------- /libssh/include/libssh/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/include/libssh/wrapper.h -------------------------------------------------------------------------------- /libssh/libssh.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/libssh.pc.cmake -------------------------------------------------------------------------------- /libssh/src/ABI/current: -------------------------------------------------------------------------------- 1 | 4.10.3 -------------------------------------------------------------------------------- /libssh/src/ABI/libssh-4.5.1.symbols: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libssh/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/src/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/agent.c -------------------------------------------------------------------------------- /libssh/src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/auth.c -------------------------------------------------------------------------------- /libssh/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/base64.c -------------------------------------------------------------------------------- /libssh/src/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/bignum.c -------------------------------------------------------------------------------- /libssh/src/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/bind.c -------------------------------------------------------------------------------- /libssh/src/bind_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/bind_config.c -------------------------------------------------------------------------------- /libssh/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/buffer.c -------------------------------------------------------------------------------- /libssh/src/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/callbacks.c -------------------------------------------------------------------------------- /libssh/src/chachapoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/chachapoly.c -------------------------------------------------------------------------------- /libssh/src/channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/channels.c -------------------------------------------------------------------------------- /libssh/src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/client.c -------------------------------------------------------------------------------- /libssh/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/config.c -------------------------------------------------------------------------------- /libssh/src/config_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/config_parser.c -------------------------------------------------------------------------------- /libssh/src/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/connect.c -------------------------------------------------------------------------------- /libssh/src/connector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/connector.c -------------------------------------------------------------------------------- /libssh/src/crypto_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/crypto_common.c -------------------------------------------------------------------------------- /libssh/src/curve25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/curve25519.c -------------------------------------------------------------------------------- /libssh/src/dh-gex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/dh-gex.c -------------------------------------------------------------------------------- /libssh/src/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/dh.c -------------------------------------------------------------------------------- /libssh/src/dh_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/dh_crypto.c -------------------------------------------------------------------------------- /libssh/src/dh_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/dh_key.c -------------------------------------------------------------------------------- /libssh/src/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/ecdh.c -------------------------------------------------------------------------------- /libssh/src/ecdh_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/ecdh_crypto.c -------------------------------------------------------------------------------- /libssh/src/ecdh_gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/ecdh_gcrypt.c -------------------------------------------------------------------------------- /libssh/src/ecdh_mbedcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/ecdh_mbedcrypto.c -------------------------------------------------------------------------------- /libssh/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/error.c -------------------------------------------------------------------------------- /libssh/src/external/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/blowfish.c -------------------------------------------------------------------------------- /libssh/src/external/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/chacha.c -------------------------------------------------------------------------------- /libssh/src/external/ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/ed25519.c -------------------------------------------------------------------------------- /libssh/src/external/fe25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/fe25519.c -------------------------------------------------------------------------------- /libssh/src/external/ge25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/ge25519.c -------------------------------------------------------------------------------- /libssh/src/external/poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/poly1305.c -------------------------------------------------------------------------------- /libssh/src/external/sc25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/external/sc25519.c -------------------------------------------------------------------------------- /libssh/src/gcrypt_missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/gcrypt_missing.c -------------------------------------------------------------------------------- /libssh/src/getpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/getpass.c -------------------------------------------------------------------------------- /libssh/src/getrandom_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/getrandom_crypto.c -------------------------------------------------------------------------------- /libssh/src/getrandom_gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/getrandom_gcrypt.c -------------------------------------------------------------------------------- /libssh/src/gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/gssapi.c -------------------------------------------------------------------------------- /libssh/src/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/gzip.c -------------------------------------------------------------------------------- /libssh/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/init.c -------------------------------------------------------------------------------- /libssh/src/kdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/kdf.c -------------------------------------------------------------------------------- /libssh/src/kex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/kex.c -------------------------------------------------------------------------------- /libssh/src/known_hosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/known_hosts.c -------------------------------------------------------------------------------- /libssh/src/knownhosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/knownhosts.c -------------------------------------------------------------------------------- /libssh/src/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/legacy.c -------------------------------------------------------------------------------- /libssh/src/libcrypto-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/libcrypto-compat.h -------------------------------------------------------------------------------- /libssh/src/libcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/libcrypto.c -------------------------------------------------------------------------------- /libssh/src/libgcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/libgcrypt.c -------------------------------------------------------------------------------- /libssh/src/libmbedcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/libmbedcrypto.c -------------------------------------------------------------------------------- /libssh/src/libssh.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/libssh.map -------------------------------------------------------------------------------- /libssh/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/log.c -------------------------------------------------------------------------------- /libssh/src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/match.c -------------------------------------------------------------------------------- /libssh/src/mbedcrypto-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/mbedcrypto-compat.h -------------------------------------------------------------------------------- /libssh/src/mbedcrypto_missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/mbedcrypto_missing.c -------------------------------------------------------------------------------- /libssh/src/md_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/md_crypto.c -------------------------------------------------------------------------------- /libssh/src/md_gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/md_gcrypt.c -------------------------------------------------------------------------------- /libssh/src/md_mbedcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/md_mbedcrypto.c -------------------------------------------------------------------------------- /libssh/src/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/messages.c -------------------------------------------------------------------------------- /libssh/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/misc.c -------------------------------------------------------------------------------- /libssh/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/options.c -------------------------------------------------------------------------------- /libssh/src/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/packet.c -------------------------------------------------------------------------------- /libssh/src/packet_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/packet_cb.c -------------------------------------------------------------------------------- /libssh/src/packet_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/packet_crypt.c -------------------------------------------------------------------------------- /libssh/src/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pcap.c -------------------------------------------------------------------------------- /libssh/src/pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki.c -------------------------------------------------------------------------------- /libssh/src/pki_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki_crypto.c -------------------------------------------------------------------------------- /libssh/src/pki_ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki_ed25519.c -------------------------------------------------------------------------------- /libssh/src/pki_ed25519_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki_ed25519_common.c -------------------------------------------------------------------------------- /libssh/src/pki_gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki_gcrypt.c -------------------------------------------------------------------------------- /libssh/src/pki_mbedcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/pki_mbedcrypto.c -------------------------------------------------------------------------------- /libssh/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/poll.c -------------------------------------------------------------------------------- /libssh/src/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/scp.c -------------------------------------------------------------------------------- /libssh/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/server.c -------------------------------------------------------------------------------- /libssh/src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/session.c -------------------------------------------------------------------------------- /libssh/src/sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/sftp.c -------------------------------------------------------------------------------- /libssh/src/sftp_aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/sftp_aio.c -------------------------------------------------------------------------------- /libssh/src/sftp_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/sftp_common.c -------------------------------------------------------------------------------- /libssh/src/sftpserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/sftpserver.c -------------------------------------------------------------------------------- /libssh/src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/socket.c -------------------------------------------------------------------------------- /libssh/src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/string.c -------------------------------------------------------------------------------- /libssh/src/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads.c -------------------------------------------------------------------------------- /libssh/src/threads/libcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/libcrypto.c -------------------------------------------------------------------------------- /libssh/src/threads/libgcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/libgcrypt.c -------------------------------------------------------------------------------- /libssh/src/threads/mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/mbedtls.c -------------------------------------------------------------------------------- /libssh/src/threads/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/noop.c -------------------------------------------------------------------------------- /libssh/src/threads/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/pthread.c -------------------------------------------------------------------------------- /libssh/src/threads/winlocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/threads/winlocks.c -------------------------------------------------------------------------------- /libssh/src/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/token.c -------------------------------------------------------------------------------- /libssh/src/ttyopts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/ttyopts.c -------------------------------------------------------------------------------- /libssh/src/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/src/wrapper.c -------------------------------------------------------------------------------- /libssh/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/tests/chmodtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/chmodtest.c -------------------------------------------------------------------------------- /libssh/tests/chroot_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/chroot_wrapper.c -------------------------------------------------------------------------------- /libssh/tests/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/cmdline.c -------------------------------------------------------------------------------- /libssh/tests/ctest-default.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/ctest-default.cmake -------------------------------------------------------------------------------- /libssh/tests/etc/group.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/etc/group.in -------------------------------------------------------------------------------- /libssh/tests/etc/hosts.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/etc/hosts.in -------------------------------------------------------------------------------- /libssh/tests/etc/pam.d/sshd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/etc/pam.d/sshd.in -------------------------------------------------------------------------------- /libssh/tests/etc/passwd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/etc/passwd.in -------------------------------------------------------------------------------- /libssh/tests/etc/shadow.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/etc/shadow.in -------------------------------------------------------------------------------- /libssh/tests/fs_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/fs_wrapper.c -------------------------------------------------------------------------------- /libssh/tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/tests/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/fuzz/README.md -------------------------------------------------------------------------------- /libssh/tests/fuzz/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/fuzz/fuzzer.c -------------------------------------------------------------------------------- /libssh/tests/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/generate.py -------------------------------------------------------------------------------- /libssh/tests/gss/kdcsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/gss/kdcsetup.sh -------------------------------------------------------------------------------- /libssh/tests/keys/id_ecdsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_ecdsa -------------------------------------------------------------------------------- /libssh/tests/keys/id_ecdsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_ecdsa.pub -------------------------------------------------------------------------------- /libssh/tests/keys/id_ed25519: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_ed25519 -------------------------------------------------------------------------------- /libssh/tests/keys/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_ed25519.pub -------------------------------------------------------------------------------- /libssh/tests/keys/id_rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_rsa -------------------------------------------------------------------------------- /libssh/tests/keys/id_rsa.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/id_rsa.pub -------------------------------------------------------------------------------- /libssh/tests/keys/ssh_host_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/ssh_host_key -------------------------------------------------------------------------------- /libssh/tests/keys/user_ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/keys/user_ca -------------------------------------------------------------------------------- /libssh/tests/pkd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/CMakeLists.txt -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_client.h -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_daemon.c -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_daemon.h -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_hello.c -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_keyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_keyutil.c -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_keyutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_keyutil.h -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_util.c -------------------------------------------------------------------------------- /libssh/tests/pkd/pkd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/pkd/pkd_util.h -------------------------------------------------------------------------------- /libssh/tests/ssh_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/ssh_ping.c -------------------------------------------------------------------------------- /libssh/tests/suppressions/lsan.supp: -------------------------------------------------------------------------------- 1 | leak:libcrypto.so 2 | -------------------------------------------------------------------------------- /libssh/tests/test_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/test_socket.c -------------------------------------------------------------------------------- /libssh/tests/torture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture.c -------------------------------------------------------------------------------- /libssh/tests/torture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture.h -------------------------------------------------------------------------------- /libssh/tests/torture_cmocka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_cmocka.c -------------------------------------------------------------------------------- /libssh/tests/torture_cmocka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_cmocka.h -------------------------------------------------------------------------------- /libssh/tests/torture_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_key.c -------------------------------------------------------------------------------- /libssh/tests/torture_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_key.h -------------------------------------------------------------------------------- /libssh/tests/torture_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_pki.c -------------------------------------------------------------------------------- /libssh/tests/torture_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/torture_pki.h -------------------------------------------------------------------------------- /libssh/tests/unittests/hello world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | printf '%s' "$1" 2>&1 3 | -------------------------------------------------------------------------------- /libssh/tests/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/libssh/tests/valgrind.supp -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/setup.py -------------------------------------------------------------------------------- /ssh/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/__init__.pxd -------------------------------------------------------------------------------- /ssh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/__init__.py -------------------------------------------------------------------------------- /ssh/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/_version.py -------------------------------------------------------------------------------- /ssh/c_callbacks.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/c_callbacks.pxd -------------------------------------------------------------------------------- /ssh/c_legacy.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/c_legacy.pxd -------------------------------------------------------------------------------- /ssh/c_sftp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/c_sftp.pxd -------------------------------------------------------------------------------- /ssh/c_ssh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/c_ssh.pxd -------------------------------------------------------------------------------- /ssh/c_ssh2.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/c_ssh2.pxd -------------------------------------------------------------------------------- /ssh/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/callbacks.c -------------------------------------------------------------------------------- /ssh/callbacks.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/callbacks.pxd -------------------------------------------------------------------------------- /ssh/callbacks.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/callbacks.pyx -------------------------------------------------------------------------------- /ssh/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/channel.c -------------------------------------------------------------------------------- /ssh/channel.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/channel.pxd -------------------------------------------------------------------------------- /ssh/channel.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/channel.pyx -------------------------------------------------------------------------------- /ssh/connector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/connector.c -------------------------------------------------------------------------------- /ssh/connector.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/connector.pxd -------------------------------------------------------------------------------- /ssh/connector.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/connector.pyx -------------------------------------------------------------------------------- /ssh/error_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/error_codes.c -------------------------------------------------------------------------------- /ssh/error_codes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/error_codes.pyx -------------------------------------------------------------------------------- /ssh/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/event.c -------------------------------------------------------------------------------- /ssh/event.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/event.pxd -------------------------------------------------------------------------------- /ssh/event.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/event.pyx -------------------------------------------------------------------------------- /ssh/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/exceptions.c -------------------------------------------------------------------------------- /ssh/exceptions.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/exceptions.pyx -------------------------------------------------------------------------------- /ssh/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/key.c -------------------------------------------------------------------------------- /ssh/key.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/key.pxd -------------------------------------------------------------------------------- /ssh/key.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/key.pyx -------------------------------------------------------------------------------- /ssh/keytypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/keytypes.c -------------------------------------------------------------------------------- /ssh/keytypes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/keytypes.pxd -------------------------------------------------------------------------------- /ssh/keytypes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/keytypes.pyx -------------------------------------------------------------------------------- /ssh/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/options.c -------------------------------------------------------------------------------- /ssh/options.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/options.pxd -------------------------------------------------------------------------------- /ssh/options.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/options.pyx -------------------------------------------------------------------------------- /ssh/scp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/scp.c -------------------------------------------------------------------------------- /ssh/scp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/scp.pxd -------------------------------------------------------------------------------- /ssh/scp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/scp.pyx -------------------------------------------------------------------------------- /ssh/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/session.c -------------------------------------------------------------------------------- /ssh/session.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/session.pxd -------------------------------------------------------------------------------- /ssh/session.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/session.pyx -------------------------------------------------------------------------------- /ssh/sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp.c -------------------------------------------------------------------------------- /ssh/sftp.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp.pxd -------------------------------------------------------------------------------- /ssh/sftp.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp.pyx -------------------------------------------------------------------------------- /ssh/sftp_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_attributes.c -------------------------------------------------------------------------------- /ssh/sftp_attributes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_attributes.pxd -------------------------------------------------------------------------------- /ssh/sftp_attributes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_attributes.pyx -------------------------------------------------------------------------------- /ssh/sftp_handles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_handles.c -------------------------------------------------------------------------------- /ssh/sftp_handles.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_handles.pxd -------------------------------------------------------------------------------- /ssh/sftp_handles.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_handles.pyx -------------------------------------------------------------------------------- /ssh/sftp_statvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_statvfs.c -------------------------------------------------------------------------------- /ssh/sftp_statvfs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_statvfs.pxd -------------------------------------------------------------------------------- /ssh/sftp_statvfs.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/sftp_statvfs.pyx -------------------------------------------------------------------------------- /ssh/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/utils.c -------------------------------------------------------------------------------- /ssh/utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/utils.pxd -------------------------------------------------------------------------------- /ssh/utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/ssh/utils.pyx -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/base_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/base_case.py -------------------------------------------------------------------------------- /tests/test_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_channel.py -------------------------------------------------------------------------------- /tests/test_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_connector.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_keys.py -------------------------------------------------------------------------------- /tests/test_keytypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_keytypes.py -------------------------------------------------------------------------------- /tests/test_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_session.py -------------------------------------------------------------------------------- /tests/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/test_sftp.py -------------------------------------------------------------------------------- /tests/unit_test_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/tests/unit_test_key.pub -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/versioneer.py -------------------------------------------------------------------------------- /zlib-1.3.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/CMakeLists.txt -------------------------------------------------------------------------------- /zlib-1.3.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/ChangeLog -------------------------------------------------------------------------------- /zlib-1.3.1/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/FAQ -------------------------------------------------------------------------------- /zlib-1.3.1/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/INDEX -------------------------------------------------------------------------------- /zlib-1.3.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/LICENSE -------------------------------------------------------------------------------- /zlib-1.3.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/Makefile -------------------------------------------------------------------------------- /zlib-1.3.1/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/Makefile.in -------------------------------------------------------------------------------- /zlib-1.3.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/README -------------------------------------------------------------------------------- /zlib-1.3.1/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/adler32.c -------------------------------------------------------------------------------- /zlib-1.3.1/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/amiga/Makefile.pup -------------------------------------------------------------------------------- /zlib-1.3.1/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/amiga/Makefile.sas -------------------------------------------------------------------------------- /zlib-1.3.1/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/compress.c -------------------------------------------------------------------------------- /zlib-1.3.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/configure -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/read.adb -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/test.adb -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/blast/README -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/blast/blast.c -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/blast/blast.h -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/blast/test.pk -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/minizip/zip.c -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/minizip/zip.h -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/puff/Makefile -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/puff/README -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/puff/puff.c -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/puff/puff.h -------------------------------------------------------------------------------- /zlib-1.3.1/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /zlib-1.3.1/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/crc32.c -------------------------------------------------------------------------------- /zlib-1.3.1/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/crc32.h -------------------------------------------------------------------------------- /zlib-1.3.1/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/deflate.c -------------------------------------------------------------------------------- /zlib-1.3.1/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/deflate.h -------------------------------------------------------------------------------- /zlib-1.3.1/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/algorithm.txt -------------------------------------------------------------------------------- /zlib-1.3.1/doc/crc-doc.1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/crc-doc.1.0.pdf -------------------------------------------------------------------------------- /zlib-1.3.1/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/rfc1950.txt -------------------------------------------------------------------------------- /zlib-1.3.1/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/rfc1951.txt -------------------------------------------------------------------------------- /zlib-1.3.1/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/rfc1952.txt -------------------------------------------------------------------------------- /zlib-1.3.1/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/doc/txtvsbin.txt -------------------------------------------------------------------------------- /zlib-1.3.1/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/enough.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/fitblk.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gun.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gzappend.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gzjoin.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gzlog.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gzlog.h -------------------------------------------------------------------------------- /zlib-1.3.1/examples/gznorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/gznorm.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/zpipe.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/zran.c -------------------------------------------------------------------------------- /zlib-1.3.1/examples/zran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/examples/zran.h -------------------------------------------------------------------------------- /zlib-1.3.1/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/gzclose.c -------------------------------------------------------------------------------- /zlib-1.3.1/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/gzguts.h -------------------------------------------------------------------------------- /zlib-1.3.1/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/gzlib.c -------------------------------------------------------------------------------- /zlib-1.3.1/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/gzread.c -------------------------------------------------------------------------------- /zlib-1.3.1/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/gzwrite.c -------------------------------------------------------------------------------- /zlib-1.3.1/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/infback.c -------------------------------------------------------------------------------- /zlib-1.3.1/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inffast.c -------------------------------------------------------------------------------- /zlib-1.3.1/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inffast.h -------------------------------------------------------------------------------- /zlib-1.3.1/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inffixed.h -------------------------------------------------------------------------------- /zlib-1.3.1/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inflate.c -------------------------------------------------------------------------------- /zlib-1.3.1/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inflate.h -------------------------------------------------------------------------------- /zlib-1.3.1/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inftrees.c -------------------------------------------------------------------------------- /zlib-1.3.1/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/inftrees.h -------------------------------------------------------------------------------- /zlib-1.3.1/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/make_vms.com -------------------------------------------------------------------------------- /zlib-1.3.1/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/msdos/Makefile.bor -------------------------------------------------------------------------------- /zlib-1.3.1/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /zlib-1.3.1/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/msdos/Makefile.emx -------------------------------------------------------------------------------- /zlib-1.3.1/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/msdos/Makefile.msc -------------------------------------------------------------------------------- /zlib-1.3.1/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/msdos/Makefile.tc -------------------------------------------------------------------------------- /zlib-1.3.1/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/nintendods/Makefile -------------------------------------------------------------------------------- /zlib-1.3.1/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/nintendods/README -------------------------------------------------------------------------------- /zlib-1.3.1/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/Makefile.emx -------------------------------------------------------------------------------- /zlib-1.3.1/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/Makefile.riscos -------------------------------------------------------------------------------- /zlib-1.3.1/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/README -------------------------------------------------------------------------------- /zlib-1.3.1/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/descrip.mms -------------------------------------------------------------------------------- /zlib-1.3.1/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /zlib-1.3.1/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/os2/zlib.def -------------------------------------------------------------------------------- /zlib-1.3.1/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/old/visual-basic.txt -------------------------------------------------------------------------------- /zlib-1.3.1/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/os400/README400 -------------------------------------------------------------------------------- /zlib-1.3.1/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/os400/bndsrc -------------------------------------------------------------------------------- /zlib-1.3.1/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/os400/make.sh -------------------------------------------------------------------------------- /zlib-1.3.1/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/os400/zlib.inc -------------------------------------------------------------------------------- /zlib-1.3.1/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/qnx/package.qpg -------------------------------------------------------------------------------- /zlib-1.3.1/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/test/example.c -------------------------------------------------------------------------------- /zlib-1.3.1/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/test/infcover.c -------------------------------------------------------------------------------- /zlib-1.3.1/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/test/minigzip.c -------------------------------------------------------------------------------- /zlib-1.3.1/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/treebuild.xml -------------------------------------------------------------------------------- /zlib-1.3.1/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/trees.c -------------------------------------------------------------------------------- /zlib-1.3.1/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/trees.h -------------------------------------------------------------------------------- /zlib-1.3.1/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/uncompr.c -------------------------------------------------------------------------------- /zlib-1.3.1/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/watcom/watcom_f.mak -------------------------------------------------------------------------------- /zlib-1.3.1/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/watcom/watcom_l.mak -------------------------------------------------------------------------------- /zlib-1.3.1/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /zlib-1.3.1/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/Makefile.bor -------------------------------------------------------------------------------- /zlib-1.3.1/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/Makefile.gcc -------------------------------------------------------------------------------- /zlib-1.3.1/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/Makefile.msc -------------------------------------------------------------------------------- /zlib-1.3.1/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/VisualC.txt -------------------------------------------------------------------------------- /zlib-1.3.1/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/zlib.def -------------------------------------------------------------------------------- /zlib-1.3.1/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib-1.3.1/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zconf.h -------------------------------------------------------------------------------- /zlib-1.3.1/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zconf.h.cmakein -------------------------------------------------------------------------------- /zlib-1.3.1/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zconf.h.in -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.3 -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.3.pdf -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.h -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.map -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.pc.cmakein -------------------------------------------------------------------------------- /zlib-1.3.1/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zlib.pc.in -------------------------------------------------------------------------------- /zlib-1.3.1/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zutil.c -------------------------------------------------------------------------------- /zlib-1.3.1/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParallelSSH/ssh-python/HEAD/zlib-1.3.1/zutil.h --------------------------------------------------------------------------------