1// ======================================================================
2//	File:		KCAPI_Cert.h
3//
4//	Operation classes for APIs for working with Certificates
5//		- KCFindX509Certificates
6//		- KCChooseCertificate
7//
8//
9//	Copyright:	Copyright (c) 2000,2003 Apple Computer, Inc. All Rights Reserved.
10//
11//	Change History (most recent first):
12//
13//		 <1>	3/1/00	em		Created.
14// ======================================================================
15
16#ifndef __KCAPI_CERT__
17#define __KCAPI_CERT__
18
19#include "KCOperation.h"
20#include "KCOperationID.h"
21
22
23// ���������������������������������������������������������������������������
24// 	� COp_KCFindX509Certificates
25// ���������������������������������������������������������������������������
26class COp_KCFindX509Certificates : public KCOperation
27{
28public:
29OPERATION_ID(KCFindX509Certificates)
30
31								COp_KCFindX509Certificates();
32	virtual	OSStatus			Operate();
33
34protected:
35};
36
37// ���������������������������������������������������������������������������
38// 	� COp_KCChooseCertificate
39// ���������������������������������������������������������������������������
40class COp_KCChooseCertificate : public KCOperation
41{
42public:
43OPERATION_ID(KCChooseCertificate)
44
45								COp_KCChooseCertificate();
46	virtual	OSStatus			Operate();
47
48protected:
49};
50
51#endif	// __KCAPI_CERT__
52