mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
73 lines
2.1 KiB
C
73 lines
2.1 KiB
C
/* rndriscos.c - raw random number for RISC OS
|
|
* Copyright (C) 2001 Free Software Foundation, Inc.
|
|
*
|
|
* This file is part of GnuPG.
|
|
*
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GnuPG 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef USE_RNDRISCOS
|
|
|
|
#include <string.h>
|
|
#include <kernel.h>
|
|
#include <swis.h>
|
|
#include "util.h"
|
|
|
|
#define CryptRandom_Byte 0x51980
|
|
|
|
static const char * const cryptrandom_path[] = {
|
|
"GnuPG:CryptRandom",
|
|
"GnuPG:CryptRand",
|
|
"System:310.Modules.CryptRandom",
|
|
"System:310.Modules.CryptRand",
|
|
"System:Modules.CryptRandom",
|
|
"System:Modules.CryptRand",
|
|
NULL
|
|
};
|
|
|
|
/****************
|
|
* Get the random bytes from module
|
|
*/
|
|
int
|
|
rndriscos_gather_random(void (*add)(const void*, size_t, int), int requester,
|
|
size_t length, int level)
|
|
{
|
|
static int rndriscos_initialized = 0;
|
|
int n;
|
|
byte buffer[768];
|
|
|
|
if (!rndriscos_initialized)
|
|
rndriscos_initialized = riscos_load_module("CryptRandom",
|
|
cryptrandom_path, 1);
|
|
|
|
while (length) {
|
|
int nbytes = length < sizeof(buffer) ? length : sizeof(buffer);
|
|
|
|
for (n = 0; n < nbytes; ++n)
|
|
if (_swix(CryptRandom_Byte, _OUT(0), &buffer[n]))
|
|
g10_log_fatal("CryptRandom module isn't working as expected!\n");
|
|
|
|
(*add)(buffer, n, requester);
|
|
length -= n;
|
|
}
|
|
wipememory(buffer, sizeof(buffer)); /* burn the buffer */
|
|
|
|
return 0; /* success */
|
|
}
|
|
|
|
#endif /*USE_RNDRISCOS */
|