Line data Source code
1 : /* mpi-cmp.c - MPI functions
2 : * Copyright (C) 1998, 1999, 2001, 2002, 2005 Free Software Foundation, Inc.
3 : *
4 : * This file is part of Libgcrypt.
5 : *
6 : * Libgcrypt is free software; you can redistribute it and/or modify
7 : * it under the terms of the GNU Lesser General Public License as
8 : * published by the Free Software Foundation; either version 2.1 of
9 : * the License, or (at your option) any later version.
10 : *
11 : * Libgcrypt is distributed in the hope that it will be useful,
12 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : * GNU Lesser General Public License for more details.
15 : *
16 : * You should have received a copy of the GNU Lesser General Public
17 : * License along with this program; if not, write to the Free Software
18 : * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19 : */
20 :
21 : #include <config.h>
22 : #include <stdio.h>
23 : #include <stdlib.h>
24 : #include "mpi-internal.h"
25 :
26 : int
27 3380720 : _gcry_mpi_cmp_ui (gcry_mpi_t u, unsigned long v)
28 : {
29 3380720 : mpi_limb_t limb = v;
30 :
31 3380720 : _gcry_mpi_normalize (u);
32 :
33 : /* Handle the case that U contains no limb. */
34 3380720 : if (u->nlimbs == 0)
35 18597 : return -(limb != 0);
36 :
37 : /* Handle the case that U is negative. */
38 3362123 : if (u->sign)
39 1408531 : return -1;
40 :
41 1953592 : if (u->nlimbs == 1)
42 : {
43 : /* Handle the case that U contains exactly one limb. */
44 :
45 367249 : if (u->d[0] > limb)
46 272466 : return 1;
47 94783 : if (u->d[0] < limb)
48 1 : return -1;
49 94782 : return 0;
50 : }
51 : else
52 : /* Handle the case that U contains more than one limb. */
53 1586343 : return 1;
54 : }
55 :
56 :
57 : int
58 108735 : _gcry_mpi_cmp (gcry_mpi_t u, gcry_mpi_t v)
59 : {
60 : mpi_size_t usize;
61 : mpi_size_t vsize;
62 : int cmp;
63 :
64 108735 : if (mpi_is_opaque (u) || mpi_is_opaque (v))
65 : {
66 14 : if (mpi_is_opaque (u) && !mpi_is_opaque (v))
67 1 : return -1;
68 13 : if (!mpi_is_opaque (u) && mpi_is_opaque (v))
69 1 : return 1;
70 12 : if (!u->sign && !v->sign)
71 1 : return 0; /* Empty buffers are identical. */
72 11 : if (u->sign < v->sign)
73 1 : return -1;
74 10 : if (u->sign > v->sign)
75 1 : return 1;
76 9 : return memcmp (u->d, v->d, (u->sign+7)/8);
77 : }
78 : else
79 : {
80 108721 : _gcry_mpi_normalize (u);
81 108721 : _gcry_mpi_normalize (v);
82 :
83 108721 : usize = u->nlimbs;
84 108721 : vsize = v->nlimbs;
85 :
86 : /* Compare sign bits. */
87 :
88 108721 : if (!u->sign && v->sign)
89 1 : return 1;
90 108720 : if (u->sign && !v->sign)
91 2 : return -1;
92 :
93 : /* U and V are either both positive or both negative. */
94 :
95 108718 : if (usize != vsize && !u->sign && !v->sign)
96 7221 : return usize - vsize;
97 101497 : if (usize != vsize && u->sign && v->sign)
98 0 : return vsize + usize;
99 101497 : if (!usize )
100 7 : return 0;
101 101490 : if (!(cmp = _gcry_mpih_cmp (u->d, v->d, usize)))
102 7945 : return 0;
103 93545 : if ((cmp < 0?1:0) == (u->sign?1:0))
104 39004 : return 1;
105 : }
106 54541 : return -1;
107 : }
|