1.1 --- a/MYCrypto_Private.h Wed Apr 08 16:30:52 2009 -0700
1.2 +++ b/MYCrypto_Private.h Thu Apr 09 21:36:21 2009 -0700
1.3 @@ -74,12 +74,17 @@
1.4
1.5 @interface MYPublicKey (Private)
1.6 - (BOOL) setValue: (NSString*)valueStr ofAttribute: (SecKeychainAttrType)attr;
1.7 +#if !TARGET_OS_IPHONE
1.8 +- (CSSM_WRAP_KEY*) _unwrappedCSSMKey;
1.9 +#endif
1.10 @end
1.11
1.12
1.13 @interface MYPrivateKey (Private)
1.14 + (MYPrivateKey*) _generateRSAKeyPairOfSize: (unsigned)keySize
1.15 inKeychain: (MYKeychain*)keychain;
1.16 +- (id) _initWithKeyRef: (SecKeyRef)privateKey
1.17 + publicKey: (MYPublicKey*)publicKey;
1.18 - (id) _initWithKeyData: (NSData*)privKeyData
1.19 publicKeyData: (NSData*)pubKeyData
1.20 forKeychain: (SecKeychainRef)keychain