~ubuntu-branches/ubuntu/lucid/seamonkey/lucid-security

« back to all changes in this revision

Viewing changes to security/nss-fips/lib/freebl/mpi/tests/mptest-7.c

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-07-29 21:29:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729212902-spm9kpvchp9udwbw
Tags: 1.1.11+nobinonly-0ubuntu1
* New security upstream release: 1.1.11 (LP: #218534)
  Fixes USN-602-1, USN-619-1, USN-623-1 and USN-629-1
* Refresh diverged patch:
  - update debian/patches/80_security_build.patch
* Fix FTBFS with missing -lfontconfig
  - add debian/patches/11_fix_ftbfs_with_fontconfig.patch
  - update debian/patches/series
* Build with default gcc (hardy: 4.2, intrepid: 4.3)
  - update debian/rules
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Simple test driver for MPI library
 
3
 *
 
4
 *  Test 7: Random and divisibility tests
 
5
 *
 
6
 * ***** BEGIN LICENSE BLOCK *****
 
7
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
8
 *
 
9
 * The contents of this file are subject to the Mozilla Public License Version
 
10
 * 1.1 (the "License"); you may not use this file except in compliance with
 
11
 * the License. You may obtain a copy of the License at
 
12
 * http://www.mozilla.org/MPL/
 
13
 *
 
14
 * Software distributed under the License is distributed on an "AS IS" basis,
 
15
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
16
 * for the specific language governing rights and limitations under the
 
17
 * License.
 
18
 *
 
19
 * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library.
 
20
 *
 
21
 * The Initial Developer of the Original Code is
 
22
 * Michael J. Fromberger.
 
23
 * Portions created by the Initial Developer are Copyright (C) 1998
 
24
 * the Initial Developer. All Rights Reserved.
 
25
 *
 
26
 * Contributor(s):
 
27
 *
 
28
 * Alternatively, the contents of this file may be used under the terms of
 
29
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
30
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
31
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
32
 * of those above. If you wish to allow use of your version of this file only
 
33
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
34
 * use your version of this file under the terms of the MPL, indicate your
 
35
 * decision by deleting the provisions above and replace them with the notice
 
36
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
37
 * the provisions above, a recipient may use your version of this file under
 
38
 * the terms of any one of the MPL, the GPL or the LGPL.
 
39
 *
 
40
 * ***** END LICENSE BLOCK ***** */
 
41
/* $Id: mptest-7.c,v 1.4.30.1 2006/03/16 16:37:34 rrelyea%redhat.com Exp $ */
 
42
 
 
43
#include <stdio.h>
 
44
#include <stdlib.h>
 
45
#include <string.h>
 
46
#include <ctype.h>
 
47
#include <limits.h>
 
48
#include <time.h>
 
49
 
 
50
#define MP_IOFUNC 1
 
51
#include "mpi.h"
 
52
 
 
53
#include "mpprime.h"
 
54
 
 
55
int main(int argc, char *argv[])
 
56
{
 
57
  mp_digit  num;
 
58
  mp_int    a, b;
 
59
 
 
60
  srand(time(NULL));
 
61
 
 
62
  if(argc < 3) {
 
63
    fprintf(stderr, "Usage: %s <a> <b>\n", argv[0]);
 
64
    return 1;
 
65
  }
 
66
 
 
67
  printf("Test 7: Random & divisibility tests\n\n");
 
68
 
 
69
  mp_init(&a);
 
70
  mp_init(&b);
 
71
 
 
72
  mp_read_radix(&a, argv[1], 10);
 
73
  mp_read_radix(&b, argv[2], 10);
 
74
 
 
75
  printf("a = "); mp_print(&a, stdout); fputc('\n', stdout);
 
76
  printf("b = "); mp_print(&b, stdout); fputc('\n', stdout);
 
77
 
 
78
  if(mpp_divis(&a, &b) == MP_YES)
 
79
    printf("a is divisible by b\n");
 
80
  else
 
81
    printf("a is not divisible by b\n");
 
82
 
 
83
  if(mpp_divis(&b, &a) == MP_YES)
 
84
    printf("b is divisible by a\n");
 
85
  else
 
86
    printf("b is not divisible by a\n");
 
87
 
 
88
  printf("\nb = mpp_random()\n");
 
89
  mpp_random(&b);
 
90
  printf("b = "); mp_print(&b, stdout); fputc('\n', stdout);
 
91
  mpp_random(&b);
 
92
  printf("b = "); mp_print(&b, stdout); fputc('\n', stdout);
 
93
  mpp_random(&b);
 
94
  printf("b = "); mp_print(&b, stdout); fputc('\n', stdout);
 
95
 
 
96
  printf("\nTesting a for divisibility by first 170 primes\n");
 
97
  num = 170;
 
98
  if(mpp_divis_primes(&a, &num) == MP_YES)
 
99
    printf("It is divisible by at least one of them\n");
 
100
  else
 
101
    printf("It is not divisible by any of them\n");
 
102
 
 
103
  mp_clear(&b);
 
104
  mp_clear(&a);
 
105
 
 
106
  return 0;
 
107
}