pike.git
/
src
/
post_modules
/
Nettle
/
nettle.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/post_modules/Nettle/nettle.cmod:450:
{ #ifdef __NT__ struct program *nt_program = NULL; struct object *nt_object = NULL; #endif /* __NT__ */ INIT; #ifdef HAVE_LIBNETTLE hash_init(); mac_init(); cipher_init();
+
aead_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
-
+
aead_exit();
cipher_exit(); mac_exit(); hash_exit(); #endif /* HAVE_LIBNETTLE */ #ifdef __NT__ nt_exit(); #endif /* __NT__ */ #ifdef HAVE_LIBHOGWEED hogweed_exit(); #endif EXIT; }