1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
HexChat OTR
===========
Adds off the record support to HexChat.
Originally forked from irssi-otr and still a work in progress.
Installation
------------
### Dependencies
- glib
- gcrypt
- libotr4
- hexchat
```sh
./autogen.sh
make -s
sudo make install
```
Usage
-----
1. Start a session with a user:
```
/query nick
/otr start
```
If this is your first time it may take a while to generate a key.
2. Authenticate this user:
At this point you need to verify this is the person you think.
- If you know their fingerprint and it is correct:
```
/otr trust
```
- If you have previously agreed on a password:
```
/otr auth <password>
```
- If you have neither of these:
```
/otr authq <question> <answer>
```
3. Start chatting:
Everything should be secure at this point.
When you are done:
```
/otr finish
```
|