MYCrypto_Private.h
changeset 6 2d7692f9b6b4
parent 3 1dfe820d7ebe
child 8 4c0eafa7b233
     1.1 --- a/MYCrypto_Private.h	Wed Apr 08 16:30:52 2009 -0700
     1.2 +++ b/MYCrypto_Private.h	Thu Apr 09 22:46:48 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