├── .gitignore ├── .pylint-plugins └── astng_hashlib.py ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── icons ├── 128x128 │ └── keysync.png ├── add.png ├── adium.png ├── chatsecure.png ├── gajim.png ├── gnupg.png ├── irssi.png ├── jitsi.png ├── keysync.icns ├── keysync.ico ├── keysync.png ├── kopete.png ├── pidgin.png └── xchat.png ├── jenkins-build ├── keysync ├── keysync-gui ├── keysync-gui-folder.spec ├── keysync-gui-onefile.spec ├── keysync.desktop ├── man └── keysync.1 ├── otrapps ├── __init__.py ├── adium.py ├── chatsecure.py ├── errors.py ├── gajim.py ├── gnupg.py ├── irssi.py ├── jitsi.py ├── kopete.py ├── otr_fingerprints.py ├── otr_private_key.py ├── pidgin.py ├── util.py └── xchat.py ├── py2app-python2.6.patch ├── setup.py ├── tests ├── SAMENESS │ ├── adium │ │ ├── Accounts.plist │ │ ├── otr.fingerprints │ │ └── otr.private_key │ └── pidgin │ │ ├── accounts.xml │ │ ├── otr.fingerprints │ │ └── otr.private_key ├── adium │ ├── Accounts.plist │ ├── Library │ │ └── Application Support │ │ │ └── Adium 2.0 │ │ │ ├── Login Preferences.plist │ │ │ └── Users │ │ │ └── Default │ │ │ ├── AccountPrefs.plist │ │ │ ├── Accounts.plist │ │ │ ├── ByObjectPrefs.plist │ │ │ ├── Contact Alerts.plist │ │ │ ├── Contact List.plist │ │ │ ├── Event Presets.plist │ │ │ ├── General.plist │ │ │ ├── List Layout.plist │ │ │ ├── List Theme.plist │ │ │ ├── Logging.plist │ │ │ ├── OTR.plist │ │ │ ├── URL Handling Group.plist │ │ │ ├── WebKit Message Display.plist │ │ │ └── libpurple │ │ │ ├── accounts.xml │ │ │ ├── blist.xml │ │ │ ├── prefs.xml │ │ │ └── xmpp-caps.xml │ ├── otr.fingerprints │ └── otr.private_key ├── chatsecure │ ├── otr_keystore │ └── otr_keystore.ofcaes ├── gajim │ ├── config │ ├── guardianproject.info.fpr │ └── guardianproject.info.key3 ├── gnupg │ ├── pubring.gpg │ ├── random_seed │ ├── secring.gpg │ └── trustdb.gpg ├── irssi │ ├── otr.fp │ └── otr.key ├── jitsi │ ├── contactlist.xml │ └── sip-communicator.properties ├── keyczar │ ├── privatekey-v0.5b.json │ ├── privatekey-v0.6b.json │ ├── publickey-v0.5b.json │ └── publickey-v0.6b.json ├── kopete │ ├── fingerprints │ └── privkeys ├── openssl │ ├── parse-private-key-PKCS#8.py │ └── useful-commands.sh ├── pidgin │ ├── accounts.xml │ ├── otr.fingerprints │ └── otr.private_key ├── run-tests.sh └── xchat │ ├── otr.fp │ └── otr.key └── win32 ├── README.md ├── cypherpunks-otr-pubkey.asc ├── fetch-and-verify.sh ├── pidgin-windows-pubkeys.asc ├── pycrypto-pubkey.asc ├── python-pubkeys.asc └── w32-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylint-plugins/astng_hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/.pylint-plugins/astng_hashlib.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/README.md -------------------------------------------------------------------------------- /icons/128x128/keysync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/128x128/keysync.png -------------------------------------------------------------------------------- /icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/add.png -------------------------------------------------------------------------------- /icons/adium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/adium.png -------------------------------------------------------------------------------- /icons/chatsecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/chatsecure.png -------------------------------------------------------------------------------- /icons/gajim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/gajim.png -------------------------------------------------------------------------------- /icons/gnupg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/gnupg.png -------------------------------------------------------------------------------- /icons/irssi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/irssi.png -------------------------------------------------------------------------------- /icons/jitsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/jitsi.png -------------------------------------------------------------------------------- /icons/keysync.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/keysync.icns -------------------------------------------------------------------------------- /icons/keysync.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/keysync.ico -------------------------------------------------------------------------------- /icons/keysync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/keysync.png -------------------------------------------------------------------------------- /icons/kopete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/kopete.png -------------------------------------------------------------------------------- /icons/pidgin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/pidgin.png -------------------------------------------------------------------------------- /icons/xchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/icons/xchat.png -------------------------------------------------------------------------------- /jenkins-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/jenkins-build -------------------------------------------------------------------------------- /keysync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/keysync -------------------------------------------------------------------------------- /keysync-gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/keysync-gui -------------------------------------------------------------------------------- /keysync-gui-folder.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/keysync-gui-folder.spec -------------------------------------------------------------------------------- /keysync-gui-onefile.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/keysync-gui-onefile.spec -------------------------------------------------------------------------------- /keysync.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/keysync.desktop -------------------------------------------------------------------------------- /man/keysync.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/man/keysync.1 -------------------------------------------------------------------------------- /otrapps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/__init__.py -------------------------------------------------------------------------------- /otrapps/adium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/adium.py -------------------------------------------------------------------------------- /otrapps/chatsecure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/chatsecure.py -------------------------------------------------------------------------------- /otrapps/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/errors.py -------------------------------------------------------------------------------- /otrapps/gajim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/gajim.py -------------------------------------------------------------------------------- /otrapps/gnupg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/gnupg.py -------------------------------------------------------------------------------- /otrapps/irssi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/irssi.py -------------------------------------------------------------------------------- /otrapps/jitsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/jitsi.py -------------------------------------------------------------------------------- /otrapps/kopete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/kopete.py -------------------------------------------------------------------------------- /otrapps/otr_fingerprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/otr_fingerprints.py -------------------------------------------------------------------------------- /otrapps/otr_private_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/otr_private_key.py -------------------------------------------------------------------------------- /otrapps/pidgin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/pidgin.py -------------------------------------------------------------------------------- /otrapps/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/util.py -------------------------------------------------------------------------------- /otrapps/xchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/otrapps/xchat.py -------------------------------------------------------------------------------- /py2app-python2.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/py2app-python2.6.patch -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/setup.py -------------------------------------------------------------------------------- /tests/SAMENESS/adium/Accounts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/adium/Accounts.plist -------------------------------------------------------------------------------- /tests/SAMENESS/adium/otr.fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/adium/otr.fingerprints -------------------------------------------------------------------------------- /tests/SAMENESS/adium/otr.private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/adium/otr.private_key -------------------------------------------------------------------------------- /tests/SAMENESS/pidgin/accounts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/pidgin/accounts.xml -------------------------------------------------------------------------------- /tests/SAMENESS/pidgin/otr.fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/pidgin/otr.fingerprints -------------------------------------------------------------------------------- /tests/SAMENESS/pidgin/otr.private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/SAMENESS/pidgin/otr.private_key -------------------------------------------------------------------------------- /tests/adium/Accounts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Accounts.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Login Preferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Login Preferences.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/AccountPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/AccountPrefs.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/Accounts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/Accounts.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/ByObjectPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/ByObjectPrefs.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/Contact Alerts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/Contact Alerts.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/Contact List.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/Contact List.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/Event Presets.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/Event Presets.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/General.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/General.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/List Layout.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/List Layout.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/List Theme.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/List Theme.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/Logging.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/Logging.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/OTR.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/OTR.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/URL Handling Group.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/URL Handling Group.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/WebKit Message Display.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/WebKit Message Display.plist -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/accounts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/accounts.xml -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/blist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/blist.xml -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/prefs.xml -------------------------------------------------------------------------------- /tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/xmpp-caps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/Library/Application Support/Adium 2.0/Users/Default/libpurple/xmpp-caps.xml -------------------------------------------------------------------------------- /tests/adium/otr.fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/otr.fingerprints -------------------------------------------------------------------------------- /tests/adium/otr.private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/adium/otr.private_key -------------------------------------------------------------------------------- /tests/chatsecure/otr_keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/chatsecure/otr_keystore -------------------------------------------------------------------------------- /tests/chatsecure/otr_keystore.ofcaes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/chatsecure/otr_keystore.ofcaes -------------------------------------------------------------------------------- /tests/gajim/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gajim/config -------------------------------------------------------------------------------- /tests/gajim/guardianproject.info.fpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gajim/guardianproject.info.fpr -------------------------------------------------------------------------------- /tests/gajim/guardianproject.info.key3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gajim/guardianproject.info.key3 -------------------------------------------------------------------------------- /tests/gnupg/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gnupg/pubring.gpg -------------------------------------------------------------------------------- /tests/gnupg/random_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gnupg/random_seed -------------------------------------------------------------------------------- /tests/gnupg/secring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gnupg/secring.gpg -------------------------------------------------------------------------------- /tests/gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/gnupg/trustdb.gpg -------------------------------------------------------------------------------- /tests/irssi/otr.fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/irssi/otr.fp -------------------------------------------------------------------------------- /tests/irssi/otr.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/irssi/otr.key -------------------------------------------------------------------------------- /tests/jitsi/contactlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/jitsi/contactlist.xml -------------------------------------------------------------------------------- /tests/jitsi/sip-communicator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/jitsi/sip-communicator.properties -------------------------------------------------------------------------------- /tests/keyczar/privatekey-v0.5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/keyczar/privatekey-v0.5b.json -------------------------------------------------------------------------------- /tests/keyczar/privatekey-v0.6b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/keyczar/privatekey-v0.6b.json -------------------------------------------------------------------------------- /tests/keyczar/publickey-v0.5b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/keyczar/publickey-v0.5b.json -------------------------------------------------------------------------------- /tests/keyczar/publickey-v0.6b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/keyczar/publickey-v0.6b.json -------------------------------------------------------------------------------- /tests/kopete/fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/kopete/fingerprints -------------------------------------------------------------------------------- /tests/kopete/privkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/kopete/privkeys -------------------------------------------------------------------------------- /tests/openssl/parse-private-key-PKCS#8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/openssl/parse-private-key-PKCS#8.py -------------------------------------------------------------------------------- /tests/openssl/useful-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/openssl/useful-commands.sh -------------------------------------------------------------------------------- /tests/pidgin/accounts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/pidgin/accounts.xml -------------------------------------------------------------------------------- /tests/pidgin/otr.fingerprints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/pidgin/otr.fingerprints -------------------------------------------------------------------------------- /tests/pidgin/otr.private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/pidgin/otr.private_key -------------------------------------------------------------------------------- /tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/run-tests.sh -------------------------------------------------------------------------------- /tests/xchat/otr.fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/xchat/otr.fp -------------------------------------------------------------------------------- /tests/xchat/otr.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/tests/xchat/otr.key -------------------------------------------------------------------------------- /win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/README.md -------------------------------------------------------------------------------- /win32/cypherpunks-otr-pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/cypherpunks-otr-pubkey.asc -------------------------------------------------------------------------------- /win32/fetch-and-verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/fetch-and-verify.sh -------------------------------------------------------------------------------- /win32/pidgin-windows-pubkeys.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/pidgin-windows-pubkeys.asc -------------------------------------------------------------------------------- /win32/pycrypto-pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/pycrypto-pubkey.asc -------------------------------------------------------------------------------- /win32/python-pubkeys.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/python-pubkeys.asc -------------------------------------------------------------------------------- /win32/w32-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardianproject/keysync/HEAD/win32/w32-screenshot.png --------------------------------------------------------------------------------