Project

General

Profile

Blowfish Encryption Draft » History » Version 29

johu, 03/25/2011 12:56 PM
updated related issues

1 1 johu
h1. Blowfish Encryption
2 1 johu
3 2 johu
{{toc}}
4 2 johu
5 2 johu
h2. Introduction
6 2 johu
7 4 johu
Blowfish is a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier and included in a large number of cipher suites and encryption products. Blowfish provides a good encryption rate in software and no effective cryptanalysis of it has been found to date. However, the Advanced Encryption Standard now receives more attention. Schneier designed Blowfish as a general-purpose algorithm, intended as a replacement for the aging DES and free of the problems and constraints associated with other algorithms. At the time Blowfish was released, many other designs were proprietary, encumbered by patents or were commercial/government secrets. Schneier has stated that, "Blowfish is unpatented, and will remain so in all countries. The algorithm is hereby placed in the public domain, and can be freely used by anyone."[1]
8 2 johu
9 5 johu
h3. IRC Profit
10 1 johu
11 5 johu
Blowfish can be used in IRC to encrypt messages between 2 persons in a query or messages in a channel and the topic too. 
12 1 johu
13 5 johu
h3. Examples
14 5 johu
15 5 johu
* In XChat[2], Irssi[3] and mIRC[4] Blowfish support can be enabled with the FiSH plugin[5].
16 5 johu
* Konversation[6] has a built in Blowfish support
17 5 johu
18 8 johu
h2. Development
19 1 johu
20 5 johu
h3. Related Issues
21 2 johu
22 25 johu
* #689 Blowfish Support (since 28.10.2010 in upstream available)
23 18 johu
* #911 DH1080 Key Exchange
24 29 johu
* #1045 Crash of missing qca provider plugin
25 29 johu
* #1059 Crash on not decryptable text
26 5 johu
* -#61- Encrypted query (closed, will not implemented)
27 5 johu
28 6 johu
h3. Repository
29 6 johu
30 6 johu
The current development state can be found at http://gitorious.org/~johu/quassel/johus-quassel
31 6 johu
32 6 johu
>  *Get the source*
33 23 Datafreak
<pre><code>git clone git://gitorious.org/~johu/quassel/johus-quassel.git
34 28 johu
git checkout -b dh1080 -t origin/dh1080</code></pre>
35 1 johu
36 15 johu
h3. TODO
37 15 johu
38 25 johu
* -Include QCA in build system- Tested in Linux Windows; Need support for *MaxOSX testing*
39 15 johu
* -Cipher implemention- Class imported from Konversation, should works
40 15 johu
* -include cipher in IrcUser and IrcChannel- 
41 15 johu
* -store keys for channel and user in Network-
42 26 johu
* -commands setkey, delkey implementation-
43 17 johu
* -encrypt topic-
44 16 johu
* -decrypt topic-
45 17 johu
* -encrypt channel message-
46 1 johu
* -decrypt channel message-
47 15 johu
* -encrypt query message-
48 19 johu
* -decrypt query message-
49 27 johu
* -extract howto for end user from this wiki site-
50 1 johu
* -gentoo ebuild-
51 28 johu
* command keyx
52 28 johu
* initiliase key exchange
53 28 johu
* react on key exchange
54 15 johu
55 8 johu
h3. Library
56 8 johu
57 10 johu
The Blowfish algorithm is implemented in the *QCA* (Qt Cryptographic Architecture)[7] library. QCA works on all plattforms there are supported by QT including Unix, Windows and MacOSX. It is already included in Quassel build system at listed repository above.
58 10 johu
59 10 johu
h3. Commands
60 10 johu
61 10 johu
a) setting a key for a user or channel 
62 10 johu
63 10 johu
> Usage
64 10 johu
<pre><code>/setkey <nick|channel> <key></code></pre>
65 10 johu
66 10 johu
b) deleting a key for a user or channel
67 1 johu
68 1 johu
> Usage
69 1 johu
<pre><code>/delkey <nick|channel></code></pre>
70 28 johu
71 28 johu
c) key exchange for user or channel 
72 28 johu
<pre><code>/keyx <nick|channel></code></pre>
73 10 johu
74 11 johu
h3. Current Plan
75 11 johu
76 12 johu
After short discussion in #quassel.de with Sput, krytzz and brot Blowfish encryption will be included in core. See section discussion below for more information. The only contra argument is the unsecure path between remote core and clientvin a untrusted net in case of no ssl connection is present. But the pro argument preponderate to strong. So i will revert the first plan to implement the de-/encryption in client.
77 12 johu
78 12 johu
The other result of this discussion is this wiki article.
79 11 johu
80 7 johu
h3. Discussion
81 7 johu
82 7 johu
There are two possible ways to implement Blowfish support in Quassel architecture:
83 1 johu
84 11 johu
*a) Client side de-/encryption*
85 7 johu
86 7 johu
!client_deencryption.png!
87 1 johu
88 11 johu
All messages will be de-/encrypted on client side.
89 11 johu
90 11 johu
*Pro*
91 13 johu
* the complete path of messages from one client to an other is encrypted
92 13 johu
* core have nothing to do
93 11 johu
94 11 johu
*Contra*
95 13 johu
* Messages in backlog will be encrypted, that implies on receiving backlog all encrypted messages have to decrypt
96 13 johu
* If key for a channel/user changed, old messages will stay decrypted
97 11 johu
98 14 johu
*b) Core side de- and encryption*
99 7 johu
100 1 johu
!core_deencryption.png!
101 11 johu
102 11 johu
All messages will be de-/encrypted on core.
103 11 johu
104 11 johu
*Pro*
105 13 johu
* Backlog contains all decrypted messages
106 13 johu
* Client do not need to decrypt on receiving backlog
107 13 johu
* Key change doesnt matter
108 13 johu
* Fits better in Quassel architecture
109 11 johu
110 11 johu
*Contra*
111 13 johu
* The path between a core and client is unsecured if SSL is not enabled and it is not a monolitic build.
112 7 johu
113 24 johu
h3. Build Instructions
114 24 johu
* [[Build_Quassel_on_Windows]]
115 20 Datafreak
116 1 johu
h2. References
117 1 johu
118 1 johu
[1] http://en.wikipedia.org/wiki/Blowfish_%28cipher%29
119 5 johu
[2] http://xchat.org/
120 5 johu
[3] http://irssi.org/
121 5 johu
[4] http://www.mirc.com/
122 5 johu
[5] http://fish.secure.la/
123 1 johu
[6] http://konversation.kde.org/
124 8 johu
[7] http://delta.affinix.com/qca/