pike.git / src / post_modules / Nettle / nettle.cmod

version» Context lines:

pike.git/src/post_modules/Nettle/nettle.cmod:448:      PIKE_MODULE_INIT   {   #ifdef __NT__    struct program *nt_program = NULL;    struct object *nt_object = NULL;   #endif /* __NT__ */    INIT;   #ifdef HAVE_LIBNETTLE    hash_init(); +  mac_init();    cipher_init();   #endif /* HAVE_LIBNETTLE */   #ifdef __NT__    start_new_program();    nt_init();    nt_program = end_program();    add_object_constant("NT", nt_object=clone_object(nt_program,0), 0);    free_object(nt_object);    free_program(nt_program);   #endif /* __NT__ */   #ifdef HAVE_LIBHOGWEED    hogweed_init();   #endif   }      PIKE_MODULE_EXIT   {   #ifdef HAVE_LIBNETTLE    cipher_exit(); -  +  mac_exit();    hash_exit();   #endif /* HAVE_LIBNETTLE */   #ifdef __NT__    nt_exit();   #endif /* __NT__ */   #ifdef HAVE_LIBHOGWEED    hogweed_exit();   #endif    EXIT;   }