├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── Protocol-v1.txt ├── Protocol-v2.html ├── Protocol-v3.html ├── README ├── UPGRADING ├── bootstrap ├── configure.ac ├── libotr.m4 ├── libotr.pc.in ├── makedist ├── packaging └── fedora │ └── libotr.spec ├── src ├── Makefile.am ├── auth.c ├── auth.h ├── b64.c ├── b64.h ├── context.c ├── context.h ├── context_priv.c ├── context_priv.h ├── dh.c ├── dh.h ├── instag.c ├── instag.h ├── mem.c ├── mem.h ├── message.c ├── message.h ├── privkey-t.h ├── privkey.c ├── privkey.h ├── proto.c ├── proto.h ├── serial.h ├── sm.c ├── sm.h ├── tests.c ├── tlv.c ├── tlv.h ├── userstate.c ├── userstate.h └── version.h ├── test_suite ├── README ├── dummy_im.py ├── dummy_im │ └── dummy_client.py ├── instance_tags0.txt ├── instance_tags1.txt ├── instance_tags2.txt ├── instance_tags3.txt ├── instance_tags4.txt ├── otr.private_key ├── otr_c_client │ ├── Makefile │ ├── README │ └── dummy_client.c ├── otr_subprocess.py ├── otr_test.py ├── otr_test_general.py └── otr_test_mixed.py └── toolkit ├── Makefile.am ├── aes.c ├── aes.h ├── ctrmode.c ├── ctrmode.h ├── otr_mackey.c ├── otr_modify.c ├── otr_parse.c ├── otr_readforge.c ├── otr_remac.c ├── otr_sesskeys.c ├── otr_toolkit.1 ├── parse.c ├── parse.h ├── readotr.c ├── readotr.h ├── sesskeys.c ├── sesskeys.h ├── sha1hmac.c └── sha1hmac.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/NEWS -------------------------------------------------------------------------------- /Protocol-v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/Protocol-v1.txt -------------------------------------------------------------------------------- /Protocol-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/Protocol-v2.html -------------------------------------------------------------------------------- /Protocol-v3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/Protocol-v3.html -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/README -------------------------------------------------------------------------------- /UPGRADING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/UPGRADING -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/configure.ac -------------------------------------------------------------------------------- /libotr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/libotr.m4 -------------------------------------------------------------------------------- /libotr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/libotr.pc.in -------------------------------------------------------------------------------- /makedist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/makedist -------------------------------------------------------------------------------- /packaging/fedora/libotr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/packaging/fedora/libotr.spec -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/auth.c -------------------------------------------------------------------------------- /src/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/auth.h -------------------------------------------------------------------------------- /src/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/b64.c -------------------------------------------------------------------------------- /src/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/b64.h -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/context.c -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/context.h -------------------------------------------------------------------------------- /src/context_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/context_priv.c -------------------------------------------------------------------------------- /src/context_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/context_priv.h -------------------------------------------------------------------------------- /src/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/dh.c -------------------------------------------------------------------------------- /src/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/dh.h -------------------------------------------------------------------------------- /src/instag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/instag.c -------------------------------------------------------------------------------- /src/instag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/instag.h -------------------------------------------------------------------------------- /src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/mem.c -------------------------------------------------------------------------------- /src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/mem.h -------------------------------------------------------------------------------- /src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/message.c -------------------------------------------------------------------------------- /src/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/message.h -------------------------------------------------------------------------------- /src/privkey-t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/privkey-t.h -------------------------------------------------------------------------------- /src/privkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/privkey.c -------------------------------------------------------------------------------- /src/privkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/privkey.h -------------------------------------------------------------------------------- /src/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/proto.c -------------------------------------------------------------------------------- /src/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/proto.h -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/serial.h -------------------------------------------------------------------------------- /src/sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/sm.c -------------------------------------------------------------------------------- /src/sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/sm.h -------------------------------------------------------------------------------- /src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/tests.c -------------------------------------------------------------------------------- /src/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/tlv.c -------------------------------------------------------------------------------- /src/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/tlv.h -------------------------------------------------------------------------------- /src/userstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/userstate.c -------------------------------------------------------------------------------- /src/userstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/userstate.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/src/version.h -------------------------------------------------------------------------------- /test_suite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/README -------------------------------------------------------------------------------- /test_suite/dummy_im.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/dummy_im.py -------------------------------------------------------------------------------- /test_suite/dummy_im/dummy_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/dummy_im/dummy_client.py -------------------------------------------------------------------------------- /test_suite/instance_tags0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/instance_tags0.txt -------------------------------------------------------------------------------- /test_suite/instance_tags1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/instance_tags1.txt -------------------------------------------------------------------------------- /test_suite/instance_tags2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/instance_tags2.txt -------------------------------------------------------------------------------- /test_suite/instance_tags3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/instance_tags3.txt -------------------------------------------------------------------------------- /test_suite/instance_tags4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/instance_tags4.txt -------------------------------------------------------------------------------- /test_suite/otr.private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr.private_key -------------------------------------------------------------------------------- /test_suite/otr_c_client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_c_client/Makefile -------------------------------------------------------------------------------- /test_suite/otr_c_client/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_c_client/README -------------------------------------------------------------------------------- /test_suite/otr_c_client/dummy_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_c_client/dummy_client.c -------------------------------------------------------------------------------- /test_suite/otr_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_subprocess.py -------------------------------------------------------------------------------- /test_suite/otr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_test.py -------------------------------------------------------------------------------- /test_suite/otr_test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_test_general.py -------------------------------------------------------------------------------- /test_suite/otr_test_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/test_suite/otr_test_mixed.py -------------------------------------------------------------------------------- /toolkit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/Makefile.am -------------------------------------------------------------------------------- /toolkit/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/aes.c -------------------------------------------------------------------------------- /toolkit/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/aes.h -------------------------------------------------------------------------------- /toolkit/ctrmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/ctrmode.c -------------------------------------------------------------------------------- /toolkit/ctrmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/ctrmode.h -------------------------------------------------------------------------------- /toolkit/otr_mackey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_mackey.c -------------------------------------------------------------------------------- /toolkit/otr_modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_modify.c -------------------------------------------------------------------------------- /toolkit/otr_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_parse.c -------------------------------------------------------------------------------- /toolkit/otr_readforge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_readforge.c -------------------------------------------------------------------------------- /toolkit/otr_remac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_remac.c -------------------------------------------------------------------------------- /toolkit/otr_sesskeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_sesskeys.c -------------------------------------------------------------------------------- /toolkit/otr_toolkit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/otr_toolkit.1 -------------------------------------------------------------------------------- /toolkit/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/parse.c -------------------------------------------------------------------------------- /toolkit/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/parse.h -------------------------------------------------------------------------------- /toolkit/readotr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/readotr.c -------------------------------------------------------------------------------- /toolkit/readotr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/readotr.h -------------------------------------------------------------------------------- /toolkit/sesskeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/sesskeys.c -------------------------------------------------------------------------------- /toolkit/sesskeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/sesskeys.h -------------------------------------------------------------------------------- /toolkit/sha1hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/sha1hmac.c -------------------------------------------------------------------------------- /toolkit/sha1hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/off-the-record/libotr/HEAD/toolkit/sha1hmac.h --------------------------------------------------------------------------------