代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/162188/10327786
src random.src
/*
** random.src - pseudo-random number generators
**
** (C) Copyright 1988-1998 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF APTECH
www.eeworm.com/read/162128/10334181
c random.c
#include
#include
void main(void)
{
int i;
printf("Values from rand\n");
for (i = 0; i < 100; i++)
printf("%d ", rand());
printf("Values from rando
www.eeworm.com/read/162078/10338161
c random.c
#include
#include
void main(void)
{
int i;
printf("Values from rand\n");
for (i = 0; i < 100; i++)
printf("%d ", rand());
printf("Values from rando
www.eeworm.com/read/161812/10370896
h random.h
/*******************************************************************
*
* Copyright (c) 1994-2005 Jetico, Inc., Finland
* All rights reserved.
*
* File: sha1random.h
* Revision:
* Created:
* D
www.eeworm.com/read/161812/10370921
cpp random.cpp
/*******************************************************************
*
* Copyright (c) 1994-2005 Jetico, Inc., Finland
* All rights reserved.
*
* File: sha256random.cpp
* Revision:
* Created:
www.eeworm.com/read/161812/10371306
h random.h
// $Id: random.h,v 1.2 2002/10/29 07:11:46 crypt Rel-1.6-3 $
#ifndef __RANDOM_H__
#define __RANDOM_H__
#include
#include "sha1.h"
typedef struct
{
byte state [ SHA1_DIGEST_SIZE ]; /* Cur
www.eeworm.com/read/161812/10371330
cpp random.cpp
#include "random.h"
#include "sha1.h"
#include
#include
char random_cpp[]="$Id: random.cpp,v 1.3 2002/10/29 07:11:46 crypt Rel-1.6-3 $";
RNGRESULT SHA1RandomAllocate( sSHA1Rand
www.eeworm.com/read/161772/10375932