Commit 87f3435f authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

This hooks the "hwcrhk" engine Richard just submitted into the default

engine list if HW_NCIPHER is defined. I want to play :-)
parent 86787f93
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -129,6 +129,10 @@ ENGINE *ENGINE_openssl();
ENGINE *ENGINE_cswift();
#endif /* HW_CSWIFT */

#ifdef HW_NCIPHER
ENGINE *ENGINE_hwcrhk();
#endif /* HW_NCIPHER */

#ifdef  __cplusplus
}
#endif
+4 −0
Original line number Diff line number Diff line
@@ -188,6 +188,10 @@ static int engine_internal_check(void)
#ifdef HW_CSWIFT
	if(!engine_list_add(ENGINE_cswift()))
		return 0;
#endif /* HW_CSWIFT */
#ifdef HW_NCIPHER
	if(!engine_list_add(ENGINE_hwcrhk()))
		return 0;
#endif /* HW_CSWIFT */
	engine_list_flag = 1;
	return 1;