blob: 9f7a0371a67d520caeb9e99b72373472ce3381fa [file] [log] [blame]
Rich Salz440e5d82016-05-17 14:20:24 -04001/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00003 *
Rich Salz440e5d82016-05-17 14:20:24 -04004 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00008 */
9
10#include <stdio.h>
11#include <stdlib.h>
Bodo Möllerec577821999-04-23 22:13:45 +000012#include <openssl/rand.h>
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000013
Richard Levitte55f78ba2002-11-28 18:54:30 +000014#include "../e_os.h"
15
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000016/* some FIPS 140-1 random number test */
17/* some simple tests */
18
Matt Caswell0f113f32015-01-22 03:40:55 +000019int main(int argc, char **argv)
20{
21 unsigned char buf[2500];
22 int i, j, k, s, sign, nsign, err = 0;
23 unsigned long n1;
24 unsigned long n2[16];
25 unsigned long runs[2][34];
26 /*
27 * double d;
28 */
29 long d;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000030
Matt Caswell266483d2015-02-26 11:57:37 +000031 i = RAND_bytes(buf, 2500);
32 if (i <= 0) {
Matt Caswell0f113f32015-01-22 03:40:55 +000033 printf("init failed, the rand method is not properly installed\n");
34 err++;
35 goto err;
36 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000037
Matt Caswell0f113f32015-01-22 03:40:55 +000038 n1 = 0;
39 for (i = 0; i < 16; i++)
40 n2[i] = 0;
41 for (i = 0; i < 34; i++)
42 runs[0][i] = runs[1][i] = 0;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000043
Matt Caswell0f113f32015-01-22 03:40:55 +000044 /* test 1 and 2 */
45 sign = 0;
46 nsign = 0;
47 for (i = 0; i < 2500; i++) {
48 j = buf[i];
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000049
Matt Caswell0f113f32015-01-22 03:40:55 +000050 n2[j & 0x0f]++;
51 n2[(j >> 4) & 0x0f]++;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000052
Matt Caswell0f113f32015-01-22 03:40:55 +000053 for (k = 0; k < 8; k++) {
54 s = (j & 0x01);
55 if (s == sign)
56 nsign++;
57 else {
58 if (nsign > 34)
59 nsign = 34;
60 if (nsign != 0) {
61 runs[sign][nsign - 1]++;
62 if (nsign > 6)
63 runs[sign][5]++;
64 }
65 sign = s;
66 nsign = 1;
67 }
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000068
Matt Caswell0f113f32015-01-22 03:40:55 +000069 if (s)
70 n1++;
71 j >>= 1;
72 }
73 }
74 if (nsign > 34)
75 nsign = 34;
76 if (nsign != 0)
77 runs[sign][nsign - 1]++;
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000078
Matt Caswell0f113f32015-01-22 03:40:55 +000079 /* test 1 */
80 if (!((9654 < n1) && (n1 < 10346))) {
81 printf("test 1 failed, X=%lu\n", n1);
82 err++;
83 }
84 printf("test 1 done\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000085
Matt Caswell0f113f32015-01-22 03:40:55 +000086 /* test 2 */
Matt Caswell0f113f32015-01-22 03:40:55 +000087 d = 0;
88 for (i = 0; i < 16; i++)
89 d += n2[i] * n2[i];
90 d = (d * 8) / 25 - 500000;
91 if (!((103 < d) && (d < 5740))) {
92 printf("test 2 failed, X=%ld.%02ld\n", d / 100L, d % 100L);
93 err++;
94 }
95 printf("test 2 done\n");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000096
Matt Caswell0f113f32015-01-22 03:40:55 +000097 /* test 3 */
98 for (i = 0; i < 2; i++) {
99 if (!((2267 < runs[i][0]) && (runs[i][0] < 2733))) {
100 printf("test 3 failed, bit=%d run=%d num=%lu\n",
101 i, 1, runs[i][0]);
102 err++;
103 }
104 if (!((1079 < runs[i][1]) && (runs[i][1] < 1421))) {
105 printf("test 3 failed, bit=%d run=%d num=%lu\n",
106 i, 2, runs[i][1]);
107 err++;
108 }
109 if (!((502 < runs[i][2]) && (runs[i][2] < 748))) {
110 printf("test 3 failed, bit=%d run=%d num=%lu\n",
111 i, 3, runs[i][2]);
112 err++;
113 }
114 if (!((223 < runs[i][3]) && (runs[i][3] < 402))) {
115 printf("test 3 failed, bit=%d run=%d num=%lu\n",
116 i, 4, runs[i][3]);
117 err++;
118 }
119 if (!((90 < runs[i][4]) && (runs[i][4] < 223))) {
120 printf("test 3 failed, bit=%d run=%d num=%lu\n",
121 i, 5, runs[i][4]);
122 err++;
123 }
124 if (!((90 < runs[i][5]) && (runs[i][5] < 223))) {
125 printf("test 3 failed, bit=%d run=%d num=%lu\n",
126 i, 6, runs[i][5]);
127 err++;
128 }
129 }
130 printf("test 3 done\n");
131
132 /* test 4 */
133 if (runs[0][33] != 0) {
134 printf("test 4 failed, bit=%d run=%d num=%lu\n", 0, 34, runs[0][33]);
135 err++;
136 }
137 if (runs[1][33] != 0) {
138 printf("test 4 failed, bit=%d run=%d num=%lu\n", 1, 34, runs[1][33]);
139 err++;
140 }
141 printf("test 4 done\n");
Richard Levitte5ef67042000-10-10 15:08:30 +0000142 err:
Matt Caswell0f113f32015-01-22 03:40:55 +0000143 err = ((err) ? 1 : 0);
Matt Caswell0f113f32015-01-22 03:40:55 +0000144 EXIT(err);
Matt Caswell0f113f32015-01-22 03:40:55 +0000145}