예제 #1
0
void ENGINE_load_gost(void)
{
    ENGINE *toadd =engine_gost();
    if (!toadd) return;
    ENGINE_add(toadd);
    ENGINE_free(toadd);
    ERR_clear_error();
}
예제 #2
0
파일: gost_eng.c 프로젝트: 0culus/openssl
void ENGINE_load_gost(void)
	{
	ENGINE *toadd;
	if (pmeth_GostR3410_94)
		return;
	toadd = engine_gost();
	if (!toadd) return;
	ENGINE_add(toadd);
	ENGINE_free(toadd);
	ERR_clear_error();
	}