CO2 Blowfish.

02/14/2012 00:39 CptSky#1
Hum, which padding is used by the Blowfish algorithm to get a valid block size? Anyone know? It's the only thing I have to do to get a valid C# implementation.

I read that OpenSSL uses PKCS#5, but it seems to be invalid.
02/14/2012 05:40 Spirited#2
Maybe a C++ implementation would help?
02/14/2012 22:06 Mr_PoP#3
use [Only registered and activated users can see links. Click Here To Register...]
02/15/2012 02:08 CptSky#4
Quote:
Originally Posted by Fаng View Post
Maybe a C++ implementation would help?
Thanks. It's the implementation I was looking for... The majority of the others don't implement the Cipher Feedback, or required a fixed block size. I should be able to finish my implementation with that.