]>
git.saurik.com Git - apple/security.git/blob - AppleCSP/CryptKitCSP/FEEKeys.h
2 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
20 * FEEKeys.h - FEE-related asymmetric key pair classes.
22 * Created 2/21/2001 by dmitch.
25 #ifdef CRYPTKIT_CSP_ENABLE
30 #include "AppleCSPContext.h"
31 #include "AppleCSPSession.h"
32 #include <CryptKitCSP/cryptkitcsp.h>
33 #include <CryptKit/feeTypes.h>
38 * FEE version of a BinaryKey.
40 class FEEBinaryKey
: public BinaryKey
{
42 FEEBinaryKey(feePubKey feeKey
= NULL
);
45 CssmAllocator
&allocator
,
47 CSSM_KEYBLOB_FORMAT
&format
);
49 feePubKey
feeKey() { return mFeeKey
; }
54 class FEEKeyPairGenContext
:
55 public AppleCSPContext
, private AppleKeyPairGenContext
{
58 AppleCSPSession
&session
,
60 AppleCSPContext(session
) {}
62 ~FEEKeyPairGenContext() { }
64 /* no init functionality, but we need to implement it */
69 // this one is specified in, and called from, CSPFullPluginSession
71 const Context
&context
,
75 // this one is specified in, and called from, AppleKeyPairGenContext
77 const Context
&context
,
79 BinaryKey
&privBinKey
,
82 }; /* KeyPairGenContext */
85 * CSPKeyInfoProvider for FEE keys
87 class FEEKeyInfoProvider
: public CSPKeyInfoProvider
91 const CssmKey
&cssmKey
);
93 static CSPKeyInfoProvider
*provider(
94 const CssmKey
&cssmKey
);
95 ~FEEKeyInfoProvider() { }
97 BinaryKey
**binKey
); // RETURNED
98 void QueryKeySizeInBits(
99 CSSM_KEY_SIZE
&keySize
); // RETURNED
102 } /* namespace CryptKit */
104 #endif /* _FEE_KEYS_H_ */
105 #endif /* CRYPTKIT_CSP_ENABLE */