⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpublickeydialog.cpp

📁 vc环境下的pgp源码
💻 CPP
字号:
//////////////////////////////////////////////////////////////////////////////
// CPublicKeyDialog.cpp
//
// Implementation of the CPublicKeyDialog class.
//////////////////////////////////////////////////////////////////////////////

// $Id: CPublicKeyDialog.cpp,v 1.7 1999/02/26 04:09:57 nryan Exp $

// Copyright (C) 1998 by Network Associates, Inc.
// All rights reserved.

#include "StdAfx.h"

#include "Required.h"

#include "PGPclx.h"
#include "pflPrefs.h"
#include "pflPrefTypes.h"
#include "pgpAdminPrefs.h"
#include "pgpErrors.h"
#include "pgpUtilities.h"

#include "GlobalPGPContext.h"
#include "PGPdiskPublicKeyUtils.h"
#include "CPublicKeyDialog.h"


////////////
// Constants
////////////

PGPUInt32 kPGPdiskRecipReadOnlyCheckID = 1;

static LPCSTR kPGPdiskRecipReadOnlyCheckTitle = "Read-only";


/////////////////////////////////////////////////
// Class CPublicKeyDialog public member functions
/////////////////////////////////////////////////

// The CPublicKeyDialog constructor.
CPublicKeyDialog::CPublicKeyDialog()
{
	mGotNewKeys = FALSE;

	mNewRecipKeys = NULL;
	mNumNewKeys = 0;
}

// The CPublicKeyDialog destructor.
CPublicKeyDialog::~CPublicKeyDialog()
{
	CleanUp();
}

// CleanUp frees the associated keys if allocated.

void 
CPublicKeyDialog::CleanUp()
{
	if (mGotNewKeys)
	{
		PGPFreeData(mNewRecipKeys);
		PGPFreeKeySet(mNewKeySet);

		mNewRecipKeys = NULL;
		mNumNewKeys = 0;

		mGotNewKeys = FALSE;
	}
}

// AskForKeys displays the recipient dialog.

DualErr	
CPublicKeyDialog::AskForKeys(
	PGPKeySetRef		allKeys, 
	PGPRecipientSpec	*oldRecipKeys, 
	PGPUInt32			numRecipKeys)
{
	DualErr				derr;
	PGPBoolean			gotClientPrefs, gotOptionsList, marginalIsInvalid;
	PGPBoolean			showMarginalValidity, warnOnADKs;
	PGPMemoryMgrRef		memoryMgr;
	PGPPrefRef			clientPrefsRef	= kInvalidPGPPrefRef;
	PGPOptionListRef	recipientOptions;
	PGPUInt32			newKeysReadOnly;

#if PGP_BUSINESS_SECURITY

	PGPBoolean			gotAdminPrefs	= FALSE;
	PGPPrefRef			adminPrefsRef	= kInvalidPGPPrefRef;	

#endif	// PGP_BUSINESS_SECURITY

	gotClientPrefs = gotOptionsList = FALSE;
	pgpAssert(PGPKeySetRefIsValid(allKeys));

	// Cleanup.
	CleanUp();

	// Get memory manager ref.
	memoryMgr = PGPGetContextMemoryMgr(GetGlobalPGPContext());

	// Open client prefs.
	derr = PGPclOpenClientPrefs(memoryMgr, &clientPrefsRef);
	gotClientPrefs = derr.IsntError();

#if PGP_BUSINESS_SECURITY

	// Open admin prefs.
	if (derr.IsntError())
	{
		derr = PGPclOpenAdminPrefs(memoryMgr, &adminPrefsRef, TRUE);
		gotAdminPrefs = derr.IsntError();
	}

#endif	// PGP_BUSINESS_SECURITY

	// Build option list for the recipient dialog.
	if (derr.IsntError())
	{
		PGPOptionListRef defRecipOption;

		PGPGetPrefBoolean(clientPrefsRef, kPGPPrefDisplayMarginalValidity, 
			&showMarginalValidity);
		PGPGetPrefBoolean(clientPrefsRef, kPGPPrefMarginalIsInvalid,
			&marginalIsInvalid);
		PGPGetPrefBoolean(clientPrefsRef, kPGPPrefWarnOnADK, &warnOnADKs);

		if (numRecipKeys > 0)
		{
			defRecipOption = PGPOUIDefaultRecipients(GetGlobalPGPContext(), 
				numRecipKeys, oldRecipKeys);
		}
		else
		{
			defRecipOption = PGPONullOption(GetGlobalPGPContext());
		}

		derr = PGPBuildOptionList(GetGlobalPGPContext(), &recipientOptions, 
			defRecipOption, 
			PGPOUIDisplayMarginalValidity(GetGlobalPGPContext(), 
				showMarginalValidity), 
			PGPOUIIgnoreMarginalValidity(GetGlobalPGPContext(), 
				marginalIsInvalid), 
			PGPOUIRecipientList(GetGlobalPGPContext(), &mNumNewKeys, 
				&mNewRecipKeys), 

			PGPOUIDialogOptions(GetGlobalPGPContext(), 
				PGPOUICheckbox(GetGlobalPGPContext(), 
					kPGPdiskRecipReadOnlyCheckID, 
					kPGPdiskRecipReadOnlyCheckTitle, kEmptyString, 0, 
					&newKeysReadOnly, PGPOLastOption(GetGlobalPGPContext())), 
				PGPOLastOption(GetGlobalPGPContext())), 

			PGPOLastOption(GetGlobalPGPContext()));

		gotOptionsList = derr.IsntError();
	}

	if (derr.IsntError())
	{
		PGPAdditionalRecipientRequestEnforcement arrEnforcement;

		// Check enforcement.
		arrEnforcement = kPGPARREnforcement_Warn;

	#if PGP_BUSINESS_SECURITY

		{
			DualErr		dummyErr;
			PGPBoolean	enforceRemoteADKClass;
			
			dummyErr = PGPGetPrefBoolean(adminPrefsRef, 
				kPGPPrefEnforceRemoteADKClass, &enforceRemoteADKClass);
				
			if (dummyErr.IsntError() && enforceRemoteADKClass)
			{
				arrEnforcement = kPGPARREnforcement_Strict;
			}
		}

	#endif // PGP_BUSINESS_SECURITY

		// Show the recipient dialog.
		derr = PGPRecipientDialog(GetGlobalPGPContext(), allKeys, TRUE, 
			&mNewKeySet, recipientOptions, 
			PGPOUIEnforceAdditionalRecipientRequests(GetGlobalPGPContext(), 
				arrEnforcement, warnOnADKs), 
			PGPOLastOption(GetGlobalPGPContext()));

		mGotNewKeys = derr.IsntError();
	}

	if (derr.IsntError())
	{
		mNewKeysReadOnly = (newKeysReadOnly == 1);
	}

	if (gotOptionsList)
		PGPFreeOptionList(recipientOptions);

#if PGP_BUSINESS_SECURITY

	if (gotAdminPrefs)
		PGPclCloseAdminPrefs(adminPrefsRef, FALSE);

#endif	// PGP_BUSINESS_SECURITY

	if (gotClientPrefs)
		PGPclCloseClientPrefs(clientPrefsRef, FALSE);

	return derr;
}

⌨️ 快捷键说明

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