This is an engine contributed by Broadcom - it is meant to support the

BCM5805 and BCM5820 units. So far I've merely taken a skim over the code
and changed a few things from their original contributed source
(de-shadowing variables, removing variables from the header, and
re-constifying some functions to remove warnings). If this gives
compilation problems on any system, please let me know. We will hopefully
know for sure whether this actually functions on a system with the relevant
hardware in a day or two.  :-)
This commit is contained in:
Geoff Thorpe
2000-12-14 21:41:55 +00:00
parent 2c15d426b9
commit 016d7d250a
7 changed files with 837 additions and 2 deletions

View File

@@ -106,6 +106,15 @@ void ENGINE_load_nuron(void)
#endif /* !NO_HW */
}
void ENGINE_load_ubsec(void)
{
#ifndef NO_HW
#ifndef NO_HW_UBSEC
engine_add(ENGINE_ubsec());
#endif /* !NO_HW_UBSEC */
#endif /* !NO_HW */
}
void ENGINE_load_builtin_engines(void)
{
static int done=0;
@@ -117,4 +126,5 @@ void ENGINE_load_builtin_engines(void)
ENGINE_load_chil();
ENGINE_load_atalla();
ENGINE_load_nuron();
ENGINE_load_ubsec();
}