1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
14 int ltc_init_multi(void **a, ...)
22 if (mp_init(cur) != CRYPT_OK) {
26 va_start(clean_list, a);
30 cur = va_arg(clean_list, void**);
37 cur = va_arg(args, void**);
43 void ltc_deinit_multi(void *a, ...)
51 cur = va_arg(args, void *);
56 void ltc_cleanup_multi(void **a, ...)
67 cur = va_arg(args, void**);
74 /* ref: $Format:%D$ */
75 /* git commit: $Format:%H$ */
76 /* commit time: $Format:%ai$ */