diff -r 6fd9177eb6da -r df9da0f6b358 MYKey.m --- a/MYKey.m Sun Apr 19 00:01:41 2009 -0700 +++ b/MYKey.m Fri Jun 05 08:57:18 2009 -0700 @@ -131,7 +131,7 @@ SecExternalItemType type, SecKeychainRef keychain, SecKeyImportExportParameters *params) { - SecExternalFormat inputFormat = (type==kSecItemTypeSessionKey) ?kSecFormatRawKey :kSecFormatOpenSSL; + SecExternalFormat inputFormat = (type==kSecItemTypeSessionKey) ?kSecFormatRawKey :kSecFormatUnknown; CFArrayRef items = NULL; params->version = SEC_KEY_IMPORT_EXPORT_PARAMS_VERSION; @@ -142,7 +142,7 @@ if (type==kSecItemTypeSessionKey) params->keyUsage = CSSM_KEYUSE_ENCRYPT | CSSM_KEYUSE_DECRYPT; else if (type==kSecItemTypePublicKey) - params->keyUsage = CSSM_KEYUSE_ENCRYPT | CSSM_KEYUSE_VERIFY; + params->keyUsage = CSSM_KEYUSE_ENCRYPT | CSSM_KEYUSE_VERIFY | CSSM_KEYUSE_WRAP; else if (type==kSecItemTypePrivateKey) params->keyUsage = CSSM_KEYUSE_DECRYPT | CSSM_KEYUSE_SIGN; }