Edit

kc3-lang/libtommath/bn_mp_rand.c

Branch :

  • Show log

    Commit

  • Author : Daniel Mendler
    Date : 2019-05-13 00:22:18
    Hash : 4534056c
    Message : use enums mp_err, mp_ord, mp_bool, mp_sign * MP_USE_ENUMS enables enums * Wc++-compat catches some implicit conversions if MP_USE_ENUMS is defined * 100% backwards compatible API/ABI if MP_USE_ENUMS is not defined

  • bn_mp_rand.c
  • #include "tommath_private.h"
    #ifdef BN_MP_RAND_C
    /* LibTomMath, multiple-precision integer library -- Tom St Denis */
    /* SPDX-License-Identifier: Unlicense */
    
    mp_err(*s_mp_rand_source)(void *out, size_t size) = s_mp_rand_platform;
    
    void mp_rand_source(mp_err(*source)(void *out, size_t size))
    {
       s_mp_rand_source = (source == NULL) ? s_mp_rand_platform : source;
    }
    
    /* makes a pseudo-random int of a given size */
    mp_err mp_rand_digit(mp_digit *r)
    {
       mp_err ret = s_mp_rand_source(r, sizeof(mp_digit));
       *r &= MP_MASK;
       return ret;
    }
    
    mp_err mp_rand(mp_int *a, int digits)
    {
       int i;
       mp_err ret;
    
       mp_zero(a);
    
       if (digits <= 0) {
          return MP_OKAY;
       }
    
       if ((ret = mp_grow(a, digits)) != MP_OKAY) {
          return ret;
       }
    
       if ((ret = s_mp_rand_source(a->dp, (size_t)digits * sizeof(mp_digit))) != MP_OKAY) {
          return ret;
       }
    
       /* TODO: We ensure that the highest digit is nonzero. Should this be removed? */
       while ((a->dp[digits - 1] & MP_MASK) == 0) {
          if ((ret = s_mp_rand_source(a->dp + digits - 1, sizeof(mp_digit))) != MP_OKAY) {
             return ret;
          }
       }
    
       a->used = digits;
       for (i = 0; i < digits; ++i) {
          a->dp[i] &= MP_MASK;
       }
    
       return MP_OKAY;
    }
    #endif