clrand.c

来自「vc环境下的pgp源码」· C语言 代码 · 共 44 行

C
44
字号
/*____________________________________________________________________________
	Copyright (C) 1998 Network Associates, Inc.
	All rights reserved.
	
	CLrand.c - post dialog to get entropy from mouse and keyboard
	

	$Id: CLrand.c,v 1.7 1998/08/11 14:43:13 pbj Exp $
____________________________________________________________________________*/
#include "pgpPFLConfig.h"

// project header files
#include "pgpclx.h"

// pgp header files
#include "pgpRandomPool.h"
#include "pgpUserInterface.h"

//	______________________________________________
//
//  Entropy collection routine -- posts dialog for 
//  mouse/keyboard entropy collection.

PGPError PGPclExport 
PGPclRandom (
		PGPContextRef	context,
		HWND			hwnd, 
		UINT			uNeeded) 
{
	PGPError err	= kPGPError_NoErr;

	if ((uNeeded != 0) ||
		!PGPGlobalRandomPoolHasMinimumEntropy ())
	{
		err=PGPCollectRandomDataDialog (
			context,
			uNeeded,
			PGPOUIParentWindowHandle (context, hwnd),
			PGPOLastOption (context));
	}

	return err;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?