Paul Khavkine wrote: > On Fri, 14 Mar 2003, Paul Khavkine wrote: > >> >> Some bits of code in C using openSSL that seem to work with Crypt::CBC >> Blowfish, should work in C++. > > http://www.unixdaemons.com/~paul/crypto
Yeah, what you discovered is basically what I deduced: Crypt::CBC is basically a standard CBC encryption except all the results are prepended with "RandomIVxxxxxxxx", where those second 8 characters are random bytes. You then strip off those 16 bytes, set your starting IV to whatever "xxxxxxxx" was, and go. - Colin
