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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
/** \ingroup PRNG_fips186_m DSA_m
* \file fips186.c
*
* NIST FIPS-186 pseudo-random generator, code.
*/
/*
* Copyright (c) 1998, 1999, 2000 Virtual Unlimited B.V.
*
* Author: Bob Deblier <bob@virtualunlimited.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#define BEECRYPT_DLL_EXPORT
#include "fips186.h"
#include "mp32.h"
#include "mp32opt.h"
#if HAVE_STDLIB_H
# include <stdlib.h>
#endif
#if HAVE_MALLOC_H
# include <malloc.h>
#endif
/**
*/
/*@observer@*/ static uint32 fips186hinit[5] = { 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0, 0x67452301 };
const randomGenerator fips186prng = { "FIPS 186", sizeof(fips186Param), (const randomGeneratorSetup) fips186Setup, (const randomGeneratorSeed) fips186Seed, (const randomGeneratorNext) fips186Next, (const randomGeneratorCleanup) fips186Cleanup };
/**
*/
static int fips186init(register sha1Param* p)
/*@modifies p @*/
{
mp32copy(5, p->h, fips186hinit);
return 0;
}
int fips186Setup(fips186Param* fp)
{
if (fp)
{
#ifdef _REENTRANT
# if WIN32
if (!(fp->lock = CreateMutex(NULL, FALSE, NULL)))
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_init(&fp->lock, USYNC_THREAD, (void *) 0))
return -1;
# elif defined(HAVE_PTHREAD_H)
/*@-nullpass@*/
if (pthread_mutex_init(&fp->lock, (pthread_mutexattr_t *) 0))
return -1;
/*@=nullpass@*/
# endif
# endif
#endif
fp->digestsize = 0;
return entropyGatherNext(fp->state, FIPS186_STATE_SIZE);
}
return -1;
}
int fips186Seed(fips186Param* fp, const uint32* data, int size)
{
if (fp)
{
#ifdef _REENTRANT
# if WIN32
if (WaitForSingleObject(fp->lock, INFINITE) != WAIT_OBJECT_0)
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_lock(&fp->lock))
return -1;
# elif defined(HAVE_PTHREAD_H)
if (pthread_mutex_lock(&fp->lock))
return -1;
# endif
# endif
#endif
if (data)
(void) mp32addx(FIPS186_STATE_SIZE, fp->state, size, data);
#ifdef _REENTRANT
# if WIN32
if (!ReleaseMutex(fp->lock))
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_unlock(&fp->lock))
return -1;
# elif defined(HAVE_PTHREAD_H)
if (pthread_mutex_unlock(&fp->lock))
return -1;
# endif
# endif
#endif
return 0;
}
return -1;
}
int fips186Next(fips186Param* fp, uint32* data, int size)
{
if (fp)
{
#ifdef _REENTRANT
# if WIN32
if (WaitForSingleObject(fp->lock, INFINITE) != WAIT_OBJECT_0)
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_lock(&fp->lock))
return -1;
# elif defined(HAVE_PTHREAD_H)
if (pthread_mutex_lock(&fp->lock))
return -1;
# endif
# endif
#endif
while (size > 0)
{
register uint32 copy;
if (fp->digestsize == 0)
{
(void) fips186init(&fp->param);
/* copy the 512 bits of state data into the sha1Param */
mp32copy(FIPS186_STATE_SIZE, fp->param.data, fp->state);
/* process the data */
sha1Process(&fp->param);
/* set state to state + digest + 1 mod 2^512 */
(void) mp32addx(FIPS186_STATE_SIZE, fp->state, 5, fp->param.h);
(void) mp32addw(FIPS186_STATE_SIZE, fp->state, 1);
/* we now have 5 words of pseudo-random data */
fp->digestsize = 5;
}
copy = (size > fp->digestsize) ? fp->digestsize : size;
mp32copy(copy, data, fp->param.h + 5 - fp->digestsize);
fp->digestsize -= copy;
size -= copy;
data += copy;
}
#ifdef _REENTRANT
# if WIN32
if (!ReleaseMutex(fp->lock))
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_unlock(&fp->lock))
return -1;
# elif defined(HAVE_PTHREAD_H)
if (pthread_mutex_unlock(&fp->lock))
return -1;
# endif
# endif
#endif
return 0;
}
return -1;
}
int fips186Cleanup(fips186Param* fp)
{
if (fp)
{
#ifdef _REENTRANT
# if WIN32
if (!CloseHandle(fp->lock))
return -1;
# else
# if defined(HAVE_SYNCH_H)
if (mutex_destroy(&fp->lock))
return -1;
# elif defined(HAVE_PTHREAD_H)
if (pthread_mutex_destroy(&fp->lock))
return -1;
# endif
# endif
#endif
return 0;
}
return -1;
}
|