Project

General

Profile

Blowfish Encryption Draft » History » Version 22

« Previous - Version 22/33 (diff) - Next » - Current version
Datafreak, 03/04/2010 09:29 AM


Blowfish Encryption

Introduction

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]

IRC Profit

Blowfish can be used in IRC to encrypt messages between 2 persons in a query or messages in a channel and the topic too.

Examples

  • In XChat2, Irssi3 and mIRC4 Blowfish support can be enabled with the FiSH plugin5.
  • Konversation6 has a built in Blowfish support

Development

Related Issues

  • #689 Blowfish Support (in development)
  • #911 DH1080 Key Exchange
  • #61 Encrypted query (closed, will not implemented)

Repository

The current development state can be found at http://gitorious.org/~johu/quassel/johus-quassel

Get the source

git clone git://gitorious.org/~johu/quassel/johus-quassel.git

TODO

  • Include QCA in build system Tested in Linux Need support for Windows, MaxOSX testing
  • Cipher implemention Class imported from Konversation, should works
  • include cipher in IrcUser and IrcChannel
  • store keys for channel and user in Network
  • commands setkey, delkey implementation have to be tested
  • encrypt topic
  • decrypt topic
  • encrypt channel message
  • decrypt channel message
  • encrypt query message
  • decrypt query message
  • output messages for setkey, delkey commands: en, cs, da, de, es, fi, fr, hu, it, nb, ru, sl, tr
  • extract howto for end user from this wiki site
  • gentoo ebuild

Library

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.

Commands

In first stable release of this feature in Quassel there will be 2 new user commands available.

a) setting a key for a user or channel

Usage

/setkey <nick|channel> <key>

b) deleting a key for a user or channel

Usage

/delkey <nick|channel>

Current Plan

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.

The other result of this discussion is this wiki article.

Discussion

There are two possible ways to implement Blowfish support in Quassel architecture:

a) Client side de-/encryption

Client de- and encryption

All messages will be de-/encrypted on client side.

Pro
  • the complete path of messages from one client to an other is encrypted
  • core have nothing to do
Contra
  • Messages in backlog will be encrypted, that implies on receiving backlog all encrypted messages have to decrypt
  • If key for a channel/user changed, old messages will stay decrypted

b) Core side de- and encryption

Core de- and encryption

All messages will be de-/encrypted on core.

Pro
  • Backlog contains all decrypted messages
  • Client do not need to decrypt on receiving backlog
  • Key change doesnt matter
  • Fits better in Quassel architecture
Contra
  • The path between a core and client is unsecured if SSL is not enabled and it is not a monolitic build.

Build QCA on Windows

set QTDIR=C:\dev\qt-everywhere-opensource-src-4.6.1-shared

@set PATH=%QTDIR%\bin;%PATH%
@set INCLUDE=%QTDIR%\include;%INCLUDE%
@set LIB=%QTDIR%\lib;%LIB%

cd C:\dev
mkdir qca-build
cd qca-build
svn checkout svn://anonsvn.kde.org/home/kde/trunk/kdesupport/qca/
mkdir qca2-build
cd qca2-build

Visual Studio:

cmake -DBUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=C:\dev\qca -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles" ..\qca
nmake
nmake install

MinGW:

cmake -DBUILD_TESTS=OFF -DCMAKE_INSTALL_PREFIX=C:\dev\qca -DCMAKE_BUILD_TYPE=Release -G "MinGW Makefiles" ..\qca
mingw32-make
mingw32-make install

References

[1] http://en.wikipedia.org/wiki/Blowfish_%28cipher%29
[2] http://xchat.org/
[3] http://irssi.org/
[4] http://www.mirc.com/
[5] http://fish.secure.la/
[6] http://konversation.kde.org/
[7] http://delta.affinix.com/qca/