1
/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
8
* http://www.apache.org/licenses/LICENSE-2.0
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
17
#define APR_WANT_MEMFUNC
19
#include "apr_general.h"
20
#include "apr_private.h"
26
static int NXSeedRandomInternal( size_t width, void *seed )
29
int *s = (int *) seed;
30
union { int x; char y[4]; } u;
33
srand(NXGetSystemTick());
43
while ((width -= 4) > 3);
59
APR_DECLARE(apr_status_t) apr_generate_random_bytes(unsigned char *buf,
60
#ifdef APR_ENABLE_FOR_1_0
66
if (NXSeedRandom(length, buf) != 0) {
67
return NXSeedRandomInternal (length, buf);
72
#endif /* APR_HAS_RANDOM */