summaryrefslogtreecommitdiff
path: root/mini-gmp/tests/mini-random.c
blob: 7504af37e298b394a9edb4bd066f5ffc6f0e93da (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*

Copyright 2011, 2013, 2018 Free Software Foundation, Inc.

This file is part of the GNU MP Library test suite.

The GNU MP Library test suite is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.

The GNU MP Library test suite is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Public License for more details.

You should have received a copy of the GNU General Public License along with
the GNU MP Library test suite.  If not, see https://www.gnu.org/licenses/.  */

#include <stdio.h>
#include <stdlib.h>

#include "mini-random.h"

static void
set_str (mpz_t r, const char *s)
{
  if (mpz_set_str (r, s, 16) != 0)
    {
      fprintf (stderr, "mpz_set_str failed on input %s\n", s);
      abort ();
    }
}

void
mini_urandomb (mpz_t r, unsigned long bits)
{
  char *s;
  s = hex_urandomb (bits);
  set_str (r, s);
  free (s);
}

void
mini_rrandomb (mpz_t r, unsigned long bits)
{
  char *s;
  s = hex_rrandomb (bits);
  set_str (r, s);
  free (s);
}

void
mini_rrandomb_export (mpz_t r, void *dst, size_t *countp,
		      int order, size_t size, int endian, unsigned long bits)
{
  char *s;
  s = hex_rrandomb_export (dst, countp, order, size, endian, bits);
  set_str (r, s);
  free (s);
}

void
mini_random_op2 (enum hex_random_op op, unsigned long maxbits,
		 mpz_t a, mpz_t r)
{
  char *ap;
  char *rp;

  hex_random_op2 (op, maxbits, &ap, &rp);
  set_str (a, ap);
  set_str (r, rp);

  free (ap);
  free (rp);
}

void
mini_random_op3 (enum hex_random_op op, unsigned long maxbits,
		 mpz_t a, mpz_t b, mpz_t r)
{
  char *ap;
  char *bp;
  char *rp;

  hex_random_op3 (op, maxbits, &ap, &bp, &rp);
  set_str (a, ap);
  set_str (b, bp);
  set_str (r, rp);

  free (ap);
  free (bp);
  free (rp);
}

void
mini_random_op4 (enum hex_random_op op, unsigned long maxbits,
		 mpz_t a, mpz_t b, mpz_t c, mpz_t d)
{
  char *ap;
  char *bp;
  char *cp;
  char *dp;

  hex_random_op4 (op, maxbits, &ap, &bp, &cp, &dp);
  set_str (a, ap);
  set_str (b, bp);
  set_str (c, cp);
  set_str (d, dp);

  free (ap);
  free (bp);
  free (cp);
  free (dp);
}

void
mini_random_bit_op (enum hex_random_op op, unsigned long maxbits,
			 mpz_t a, mp_bitcnt_t *b, mpz_t r)
{
  char *ap;
  char *rp;

  hex_random_bit_op (op, maxbits, &ap, b, &rp);
  set_str (a, ap);
  set_str (r, rp);

  free (ap);
  free (rp);
}

void
mini_random_scan_op (enum hex_random_op op, unsigned long maxbits,
		     mpz_t a, mp_bitcnt_t *b, mp_bitcnt_t *r)
{
  char *ap;

  hex_random_scan_op (op, maxbits, &ap, b, r);
  set_str (a, ap);

  free (ap);
}

void
mini_random_lucm_op (unsigned long maxbits, mpz_t v, mpz_t q, mpz_t m,
			  long *Q, unsigned long *b0, int *res)
{
  char *vp;
  char *qp;
  char *mp;

  hex_random_lucm_op (maxbits, &vp, &qp, &mp, Q, b0, res);
  set_str (v, vp);
  set_str (q, qp);
  set_str (m, mp);

  free (vp);
  free (qp);
  free (mp);
}