comparison libtomcrypt/src/math/multi.c @ 391:00fcf5045160

propagate from branch 'au.asn.ucc.matt.ltc.dropbear' (head c1db4398d56c56c6d06ae1e20c1e0d04dbb598ed) to branch 'au.asn.ucc.matt.dropbear' (head d26d5eb2837f46b56a33fb0e7573aa0201abd4d5)
author Matt Johnston <matt@ucc.asn.au>
date Thu, 11 Jan 2007 04:29:08 +0000
parents 0cbe8f6dbf9e
children f849a5ca2efc
comparison
equal deleted inserted replaced
390:d8e44bef7917 391:00fcf5045160
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
2 *
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
5 *
6 * The library is free for all purposes without any express
7 * guarantee it works.
8 *
9 * Tom St Denis, [email protected], http://libtomcrypt.com
10 */
11 #include "tomcrypt.h"
12
13 #ifdef MPI
14 #include <stdarg.h>
15
16 int ltc_init_multi(void **a, ...)
17 {
18 void **cur = a;
19 int np = 0;
20 va_list args;
21
22 va_start(args, a);
23 while (cur != NULL) {
24 if (mp_init(cur) != CRYPT_OK) {
25 /* failed */
26 va_list clean_list;
27
28 va_start(clean_list, a);
29 cur = a;
30 while (np--) {
31 mp_clear(*cur);
32 cur = va_arg(clean_list, void**);
33 }
34 va_end(clean_list);
35 return CRYPT_MEM;
36 }
37 ++np;
38 cur = va_arg(args, void**);
39 }
40 va_end(args);
41 return CRYPT_OK;
42 }
43
44 void ltc_deinit_multi(void *a, ...)
45 {
46 void *cur = a;
47 va_list args;
48
49 va_start(args, a);
50 while (cur != NULL) {
51 mp_clear(cur);
52 cur = va_arg(args, void *);
53 }
54 va_end(args);
55 }
56
57 #endif
58
59 /* $Source: /cvs/libtom/libtomcrypt/src/math/multi.c,v $ */
60 /* $Revision: 1.5 $ */
61 /* $Date: 2006/03/31 14:15:35 $ */