tags:

views:

113

answers:

4

Lo Folk,

i'm searching Blowfish for C++ with IRC support. Anybody know where to find those tricky thing?

Thx

+1  A: 

First place I look for crypto algorithms is Crypto++. I have no idea what encryption algorithms have to do with Internet Relay Chat, so you'll have to enlighten me on what you mean there.

Billy ONeal
A: 

I have BlowFish in VB6, not related to IRC though.

Jeroen
A: 

To be more specific: A lot of irc channels are using blowfish encryption to obfuscate their written message. As far as as I know the string will be crypted with blowfish ecb mode and then will be ciphered with base64.

bla0r
Update your question (use the "edit" feature) rather than creating an answer that isn't an answer. :-) StackOverflow is a powerful tool but you have to use it well for it be useful.
Andrew Flanagan
A: 

I'd check out http://fish.secure.la/ and see how they were doing it. I know that the base64 isn't standard and that the blowfish keys can be up to 72 bytes instead of 56 bytes. There should be TCL scripts and C modules for eggdrop doing similar things too. Lots of code to check out.

signine