Re: c/c++ and GOST is russian ciphers.

2011-09-24 Thread Andrey Kulikov
You need to initiualie engine first: static ENGINE *e = NULL; e = ENGINE_by_id(gost); if (!e){ printf(Can't find engine \n); return 1; } if (!ENGINE_init(e)){ printf(Engine initialization failed!\n); ENGINE_free(e); return 1; } /*

c/c++ and GOST is russian ciphers.

2011-09-19 Thread Dmitrij K
Hi guys! I need help, please. I don't know, how do it. Maybe anyone has experience with signing/verify a docs/strings with GOST, and he will help me with... I have little code, which has can't load `md_gost94'... And I don't know how to use API for the GOST... :( My code are: [CODE=cpp]

c/c++ and GOST is russian ciphers.

2011-09-19 Thread Dmitrij K
Hi guys! I need help, please. I don't know, how do it. Maybe anyone has experience with signing/verify a docs/strings with GOST, and he will help me with... I have little code, which has can't load `md_gost94'... And I don't know how to use API for the GOST... :( My code are: [CODE=cpp]