X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=blobdiff_plain;f=lib%2Fsilcmath%2Fsilcprimegen.c;h=515f2b400fc8a0dc6d5c724f43e2fd9ddd260a25;hp=27ed090d0357e76da2c998183549a293f773f8a0;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hpb=7910ce2a5c55211a4ea09a52832c6ed32c0b64fd diff --git a/lib/silcmath/silcprimegen.c b/lib/silcmath/silcprimegen.c index 27ed090d..515f2b40 100644 --- a/lib/silcmath/silcprimegen.c +++ b/lib/silcmath/silcprimegen.c @@ -53,7 +53,7 @@ */ -static uint32 primetable[] = +static SilcUInt32 primetable[] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, @@ -195,11 +195,11 @@ static uint32 primetable[] = If argument verbose is TRUE this will display some status information about the progress of generation. */ -bool silc_math_gen_prime(SilcMPInt *prime, uint32 bits, bool verbose) +bool silc_math_gen_prime(SilcMPInt *prime, SilcUInt32 bits, bool verbose) { unsigned char *numbuf = NULL; - uint32 i, b, k; - uint32 *spmods; + SilcUInt32 i, b, k; + SilcUInt32 *spmods; SilcMPInt r, base, tmp, tmp2, oprime; silc_mp_init(&r); @@ -238,7 +238,7 @@ bool silc_math_gen_prime(SilcMPInt *prime, uint32 bits, bool verbose) /* Init modulo table with the prime candidate and the primes in the primetable. */ - spmods = silc_calloc(1, sizeof(primetable) * sizeof(uint32)); + spmods = silc_calloc(1, sizeof(primetable) * sizeof(SilcUInt32)); for (i = 0; primetable[i] != 0; i++) { silc_mp_mod_ui(&tmp, prime, primetable[i]); spmods[i] = silc_mp_get_ui(&tmp);