OTR Encrypted IM » History » Version 1
Joseph Foley, 2015-09-05 02:51
1 | 1 | Joseph Foley | h1. OTR Encrypted IM |
---|---|---|---|
2 | |||
3 | What is "OTR":http://www.cypherpunks.ca/otr/? |
||
4 | |||
5 | OTR (or Off-the-Record) Messaging allows you to have private conversations over instant messaging by providing: |
||
6 | |||
7 | Encryption |
||
8 | No one else can read your instant messages. |
||
9 | Authentication |
||
10 | You are assured the correspondent is who you think it is. |
||
11 | Deniability |
||
12 | The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured the messages he sees are authentic and unmodified. |
||
13 | Perfect forward secrecy |
||
14 | If you lose control of your private keys, no previous conversation is compromised. |
||
15 | |||
16 | h2. Ubuntu/Debian instructions |
||
17 | |||
18 | OTR is supported by a variety of different clients |
||
19 | Pidgin is a popuplar cross platform client. |
||
20 | please see "here":http://www.cypherpunks.ca/otr/software.php for more client info |
||
21 | |||
22 | (previous versions of ubuntu merely need to install pidgin and pidgin-otr) |
||
23 | |||
24 | * How setup pidgin/otr on ubuntu 12.04 beta |
||
25 | <pre>apt-get install pidgin</pre> |
||
26 | * Download the libotr and pidgin-otr from the cypherpunks.ca page |
||
27 | * @apt-get install libgcrypt-dev@ |
||
28 | * Go into the libotr |
||
29 | <pre>./configure --prefix=/usr && make && sudo make install</pre> |
||
30 | * Go into the pidgin-otr |
||
31 | <pre>./configure --prefix=/usr && make && sudo make install</pre> |