Blowfish as an engine

2008-06-10 Thread Mehdi Asgari
Hi I want to add my own implementation of Blowfish as an engine to OpenSSL. Is there any sample, source code, document, etc ?

Re: Openssl for Java application

2008-06-02 Thread Mehdi Asgari
http://noc.kpnw.org/~scott/ http://www.bpsinfo.com/javassl/ http://sponsor.iti.informatik.tu-darmstadt.de/itissl/

Developing application with OpenSSL support

2008-06-02 Thread Mehdi Asgari
Look at this book: Network Security With OpenSSL

How to load and use ccgost

2008-05-19 Thread Mehdi Asgari
Hi I've compiled the openssl 0.9.9 (checked out from cvs), both on Windows and Linux. My problem is that ccgost loads successfully, but when I try to compute a hash (-md_gost94) or do encryption, a runtime error generates (It says that error has occurred in libeay32.dll; on linux, "segmentation fau

Problem in compiling openssl 0.9.9 with MinGW

2008-05-13 Thread Mehdi Asgari
I've successfully compiled and installed openssl 0.9.9 with Microsoft C/C++ compiler, but in MinGW, in the config step, this error generates: RC4_CHUNK is undefined e_os2.h => include/openssl/e_os2.h "making $target in $dir..." 'TOP' is not recognized as an internal or external command, operab

Problem in compiling ccgost on Windows and Linux

2008-05-13 Thread Mehdi Asgari
Hi I'm trying to build ccgost. In windows (MinGW) the error is: C:\Users\Mehdi\Desktop\openssl 0.9.9\openssl\engines\ccgost>make (cd ../..; make DIRS=engines EDIRS=ccgost sub_all) process_begin: CreateProcess(NULL, (cd ../..; make DIRS=engines EDIRS=ccgost sub _all), ...) failed. make (e=2): T

Re: Implementing a custom cryptographic function

2008-05-13 Thread Mehdi Asgari
Hi I want to write a simple dynamic engine. Is there any documentation about writing and using it ? Could anyone send me a sample "dynamic engine" ? Yes, there is ccgost, but I need a simpler code (so I understand it faster; cause I only want to add a new cryptographic function)

Re: Implementing a custom cryptographic function

2008-05-13 Thread Mehdi Asgari
Hi I want to compile ccgost (available in openssl 0.9.9) on Windows. But the Makefile generates error. Could you give me some instrunctions about building it ? (I've used Microsoft Compiler, GCC, Cygwin)

Implementing a custom cryptographic function

2008-05-05 Thread Mehdi Asgari
Hi I want to develop a simple client/server OpenSSL application (a simple "Hello Other Side" passing between the two); my problem: Can I use a custom crypto API for encrypting data passed between ? (a simple XOR suffices, it's just proof of concept) Could anyone please show me some hints ? (I've se