├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── ascii_art ├── diamond.txt ├── eff.txt ├── micah.txt └── trollwot.txt ├── ascii_sign ├── bruteforce_keyid ├── download_strong_set ├── fake_sign ├── lib ├── README.md ├── monkeysphere-0.35 │ ├── .gitignore │ ├── .pc │ │ ├── .quilt_patches │ │ ├── .quilt_series │ │ ├── .version │ │ └── applied-patches │ ├── COPYING │ ├── Changelog │ ├── Makefile │ ├── README │ ├── debian │ │ ├── NEWS │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── gbp.conf │ │ ├── monkeysphere.dirs │ │ ├── monkeysphere.postinst │ │ ├── monkeysphere.postrm │ │ ├── monkeysphere.prerm │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── etc │ │ ├── cron.hourly │ │ │ └── monkeysphere │ │ ├── monkeysphere-authentication.conf │ │ ├── monkeysphere-host.conf │ │ └── monkeysphere.conf │ ├── examples │ │ ├── crontab │ │ ├── ssh_config │ │ └── sshd_config │ ├── man │ │ ├── man1 │ │ │ ├── monkeysphere.1 │ │ │ ├── openpgp2ssh.1 │ │ │ └── pem2openpgp.1 │ │ ├── man7 │ │ │ └── monkeysphere.7 │ │ └── man8 │ │ │ ├── monkeysphere-authentication.8 │ │ │ └── monkeysphere-host.8 │ ├── packaging │ │ ├── macports │ │ │ └── Portfile │ │ └── slackware │ │ │ └── README │ ├── src │ │ ├── monkeysphere │ │ ├── monkeysphere-authentication │ │ ├── monkeysphere-authentication-keys-for-user │ │ ├── monkeysphere-host │ │ ├── openpgp2ssh │ │ ├── pem2openpgp │ │ ├── share │ │ │ ├── checkperms │ │ │ ├── common │ │ │ ├── defaultenv │ │ │ ├── keytrans │ │ │ ├── m │ │ │ │ ├── gen_subkey │ │ │ │ ├── import_subkey │ │ │ │ ├── keys_for_userid │ │ │ │ ├── ssh_proxycommand │ │ │ │ ├── subkey_to_ssh_agent │ │ │ │ ├── update_authorized_keys │ │ │ │ └── update_known_hosts │ │ │ ├── ma │ │ │ │ ├── add_certifier │ │ │ │ ├── diagnostics │ │ │ │ ├── list_certifiers │ │ │ │ ├── remove_certifier │ │ │ │ ├── setup │ │ │ │ └── update_users │ │ │ └── mh │ │ │ │ ├── add_name │ │ │ │ ├── add_revoker │ │ │ │ ├── diagnostics │ │ │ │ ├── import_key │ │ │ │ ├── publish_key │ │ │ │ ├── revoke_key │ │ │ │ ├── revoke_name │ │ │ │ └── set_expire │ │ └── transitions │ │ │ ├── 0.23 │ │ │ ├── 0.28 │ │ │ └── README.txt │ ├── tests │ │ ├── README │ │ ├── basic │ │ ├── common │ │ ├── etc │ │ │ ├── monkeysphere │ │ │ │ └── monkeysphere-authentication.conf │ │ │ └── ssh │ │ │ │ └── sshd_config │ │ ├── home │ │ │ ├── admin │ │ │ │ └── .gnupg │ │ │ │ │ ├── pubkey.gpg │ │ │ │ │ ├── pubring.gpg │ │ │ │ │ ├── random_seed │ │ │ │ │ ├── secring.gpg │ │ │ │ │ └── trustdb.gpg │ │ │ └── testuser │ │ │ │ ├── .gnupg │ │ │ │ ├── gpg.conf │ │ │ │ ├── pubring.gpg │ │ │ │ ├── random_seed │ │ │ │ ├── secring.gpg │ │ │ │ └── trustdb.gpg │ │ │ │ ├── .monkeysphere │ │ │ │ ├── authorized_user_ids │ │ │ │ └── monkeysphere.conf │ │ │ │ └── .ssh │ │ │ │ ├── askpass │ │ │ │ ├── config │ │ │ │ └── proxy-command │ │ ├── keytrans │ │ └── openssl.cnf │ └── utils │ │ ├── build-freebsd-distinfo │ │ ├── build-macports-portfile │ │ └── preparing-release └── python-gnupg-0.3.3 │ ├── LICENSE │ ├── PKG-INFO │ ├── README │ ├── gnupg.py │ ├── setup.py │ └── test_gnupg.py └── trollwot.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.pyc 3 | homedir* 4 | bruteforce_keyid_data* 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/README.md -------------------------------------------------------------------------------- /ascii_art/diamond.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/ascii_art/diamond.txt -------------------------------------------------------------------------------- /ascii_art/eff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/ascii_art/eff.txt -------------------------------------------------------------------------------- /ascii_art/micah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/ascii_art/micah.txt -------------------------------------------------------------------------------- /ascii_art/trollwot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/ascii_art/trollwot.txt -------------------------------------------------------------------------------- /ascii_sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/ascii_sign -------------------------------------------------------------------------------- /bruteforce_keyid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/bruteforce_keyid -------------------------------------------------------------------------------- /download_strong_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/download_strong_set -------------------------------------------------------------------------------- /fake_sign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/fake_sign -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/.pc/.quilt_patches: -------------------------------------------------------------------------------- 1 | debian/patches 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/.pc/.quilt_series: -------------------------------------------------------------------------------- 1 | series 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/.pc/.version: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/.pc/applied-patches: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/COPYING -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/Changelog -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/Makefile -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/README -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/NEWS -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/changelog -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/control -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/copyright -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/gbp.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/monkeysphere.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/monkeysphere.dirs -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/monkeysphere.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/monkeysphere.postinst -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/monkeysphere.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/monkeysphere.postrm -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/monkeysphere.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/monkeysphere.prerm -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/debian/rules -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/etc/cron.hourly/monkeysphere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/etc/cron.hourly/monkeysphere -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/etc/monkeysphere-authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/etc/monkeysphere-authentication.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/etc/monkeysphere-host.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/etc/monkeysphere-host.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/etc/monkeysphere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/etc/monkeysphere.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/examples/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/examples/crontab -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/examples/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/examples/ssh_config -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/examples/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/examples/sshd_config -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man1/monkeysphere.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man1/monkeysphere.1 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man1/openpgp2ssh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man1/openpgp2ssh.1 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man1/pem2openpgp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man1/pem2openpgp.1 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man7/monkeysphere.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man7/monkeysphere.7 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man8/monkeysphere-authentication.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man8/monkeysphere-authentication.8 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/man/man8/monkeysphere-host.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/man/man8/monkeysphere-host.8 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/packaging/macports/Portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/packaging/macports/Portfile -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/packaging/slackware/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/packaging/slackware/README -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/monkeysphere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/monkeysphere -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/monkeysphere-authentication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/monkeysphere-authentication -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/monkeysphere-authentication-keys-for-user: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | exec monkeysphere-authentication keys-for-user "$@" 3 | -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/monkeysphere-host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/monkeysphere-host -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/openpgp2ssh: -------------------------------------------------------------------------------- 1 | share/keytrans -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/pem2openpgp: -------------------------------------------------------------------------------- 1 | share/keytrans -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/checkperms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/checkperms -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/common -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/defaultenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/defaultenv -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/keytrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/keytrans -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/gen_subkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/gen_subkey -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/import_subkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/import_subkey -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/keys_for_userid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/keys_for_userid -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/ssh_proxycommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/ssh_proxycommand -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/subkey_to_ssh_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/subkey_to_ssh_agent -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/update_authorized_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/update_authorized_keys -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/m/update_known_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/m/update_known_hosts -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/add_certifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/add_certifier -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/diagnostics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/diagnostics -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/list_certifiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/list_certifiers -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/remove_certifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/remove_certifier -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/setup -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/ma/update_users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/ma/update_users -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/add_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/add_name -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/add_revoker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/add_revoker -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/diagnostics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/diagnostics -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/import_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/import_key -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/publish_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/publish_key -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/revoke_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/revoke_key -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/revoke_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/revoke_name -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/share/mh/set_expire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/share/mh/set_expire -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/transitions/0.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/transitions/0.23 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/transitions/0.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/transitions/0.28 -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/src/transitions/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/src/transitions/README.txt -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/README -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/basic -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/common -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/etc/monkeysphere/monkeysphere-authentication.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/etc/monkeysphere/monkeysphere-authentication.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/etc/ssh/sshd_config -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/admin/.gnupg/pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/admin/.gnupg/pubkey.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/admin/.gnupg/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/admin/.gnupg/pubring.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/admin/.gnupg/random_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/admin/.gnupg/random_seed -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/admin/.gnupg/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/admin/.gnupg/secring.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/admin/.gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/admin/.gnupg/trustdb.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.gnupg/gpg.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.gnupg/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.gnupg/pubring.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.gnupg/random_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.gnupg/random_seed -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.gnupg/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.gnupg/secring.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.gnupg/trustdb.gpg -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.monkeysphere/authorized_user_ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.monkeysphere/authorized_user_ids -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.monkeysphere/monkeysphere.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.monkeysphere/monkeysphere.conf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.ssh/askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.ssh/askpass -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.ssh/config -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/home/testuser/.ssh/proxy-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/home/testuser/.ssh/proxy-command -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/keytrans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/keytrans -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/tests/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/tests/openssl.cnf -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/utils/build-freebsd-distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/utils/build-freebsd-distinfo -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/utils/build-macports-portfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/utils/build-macports-portfile -------------------------------------------------------------------------------- /lib/monkeysphere-0.35/utils/preparing-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/monkeysphere-0.35/utils/preparing-release -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/LICENSE -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/PKG-INFO -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/README -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/gnupg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/gnupg.py -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/setup.py -------------------------------------------------------------------------------- /lib/python-gnupg-0.3.3/test_gnupg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/lib/python-gnupg-0.3.3/test_gnupg.py -------------------------------------------------------------------------------- /trollwot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahflee/trollwot/HEAD/trollwot.pdf --------------------------------------------------------------------------------