summaryrefslogtreecommitdiff
path: root/lib/nettle/multi.c
blob: 788c8e9a0080829138321a101e56f2775bc7fcd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
 *
 * LibTomCrypt is a library that provides various cryptographic
 * algorithms in a highly modular and flexible manner.
 *
 * The library is free for all purposes without any express
 * guarantee it works.
 *
 * Tom St Denis, tomstdenis@gmail.com, http://libtom.org
 */
#include <gmp.h>
#include <stdarg.h>
#include <ecc.h>

int mp_init_multi(mpz_t *a, ...)
{
   mpz_t    *cur = a;
   int       np  = 0;
   va_list   args;

   va_start(args, a);
   while (cur != NULL) {
       mpz_init(*cur);
       ++np;
       cur = va_arg(args, mpz_t*);
   }
   va_end(args);
   return 0;
}

void mp_clear_multi(mpz_t *a, ...)
{
   mpz_t    *cur = a;
   va_list   args;

   va_start(args, a);
   while (cur != NULL) {
       mpz_clear(*cur);
       cur = va_arg(args, mpz_t*);
   }
   va_end(args);
}

/* $Source$ */
/* $Revision$ */
/* $Date$ */