I have a small encryption tool in Perl which uses the Crypt::CBC and Blowfish to encrypt files.
I want to write the decryption algorithm in C or C++ ... Please somebody help me in doing this.
I have a small encryption tool in Perl which uses the Crypt::CBC and Blowfish to encrypt files.
I want to write the decryption algorithm in C or C++ ... Please somebody help me in doing this.
You could always embed Perl in your C program...
(Update: at least one person seems to think that's a bad idea; it's really not that hard to do, and saves the hassle of worrying whether the Perl implementation of blowfish exactly matches whatever library you find to do it in C.)