diff -r 39fec79de6e8 -r d0aadddb9c64 MYCrypto_Private.h --- a/MYCrypto_Private.h Sun Jun 07 21:53:56 2009 -0700 +++ b/MYCrypto_Private.h Tue Jul 21 10:13:08 2009 -0700 @@ -13,6 +13,8 @@ #import "MYPublicKey.h" #import "MYPrivateKey.h" #import "MYCertificate.h" +#import "MYCertificateInfo.h" + #import "Test.h" #import @@ -33,6 +35,9 @@ @property (readonly) CSSM_CSP_HANDLE CSPHandle; @property (readonly) NSString* path; #endif +#if MYCRYPTO_USE_IPHONE_API ++ (CFTypeRef) _addItemWithInfo: (NSMutableDictionary*)info; +#endif @end @@ -56,9 +61,7 @@ @property (readonly) SecExternalItemType keyClass, keyType; @property (readonly) MYSHA1Digest* _keyDigest; - (NSData*) _crypt: (NSData *)data operation: (BOOL) op; // YES to encrypt, NO to decrypt -#if MYCRYPTO_USE_IPHONE_API -+ (SecKeyRef) _addKeyWithInfo: (NSMutableDictionary*)info; -#else +#if !MYCRYPTO_USE_IPHONE_API @property (readonly) const CSSM_KEY* cssmKey; @property (readonly) const CSSM_CSP_HANDLE cssmCSPHandle; - (CSSM_CC_HANDLE) _createSignatureContext: (CSSM_ALGORITHMS)algorithm; @@ -79,6 +82,7 @@ @interface MYPublicKey (Private) +@property (retain) MYCertificate *certificate; - (BOOL) setValue: (NSString*)valueStr ofAttribute: (SecKeychainAttrType)attr; #if !TARGET_OS_IPHONE - (CSSM_WRAP_KEY*) _unwrappedCSSMKey; @@ -117,6 +121,15 @@ #endif +@interface MYCertificateInfo (Private) +- (NSData*) subjectPublicKeyData; +- (MYPublicKey*) subjectPublicKey; +- (NSData*) signedData; +- (MYOID*) signatureAlgorithmID; +- (NSData*) signature; +@end + + #undef check BOOL check(OSStatus err, NSString *what);