CCCrypt 不适用于 iOS 7 的 xcode 5

Posted

技术标签:

【中文标题】CCCrypt 不适用于 iOS 7 的 xcode 5【英文标题】:CCCrypt not work on xcode 5 for ios 7 【发布时间】:2013-08-06 10:41:16 【问题描述】:

我尝试使用 CCCrypt 方法,但它与 XCode4 和 XCode5 的结果不同

 - (NSData *)AES256DecryptWithKey:(NSString *)key

  // 'key' should be 32 bytes for AES256, will be null-padded otherwise
  char keyPtr[kCCKeySizeAES256+1]; // room for terminator (unused)
  bzero( keyPtr, sizeof( keyPtr ) ); // fill with zeroes (for padding)

  // fetch key data
  [key getCString:keyPtr maxLength:sizeof( keyPtr ) encoding:NSUTF8StringEncoding];

  NSUInteger dataLength = [self length];

  //See the doc: For block ciphers, the output size will always be less than or 
  //equal to the input size plus the size of one block.
  //That's why we need to add the size of one block here
  size_t bufferSize = dataLength + kCCBlockSizeAES128;
  void *buffer = malloc( bufferSize );

  size_t numBytesDecrypted = 0;
  CCCryptorStatus cryptStatus = CCCrypt( kCCDecrypt, kCCAlgorithmAES128, kCCOptionPKCS7Padding,
                                        keyPtr, kCCKeySizeAES256,
                                        NULL /* initialization vector (optional) */,
                                        [self bytes], dataLength, /* input */
                                        buffer, bufferSize, /* output */
                                        &numBytesDecrypted );

  if( cryptStatus == kCCSuccess )
  
    //the returned NSData takes ownership of the buffer and will free it on deallocation
    return [NSData dataWithBytesNoCopy:buffer length:numBytesDecrypted];
  

  free( buffer ); //free the buffer
  return nil;

当我用这行调用这个方法时......不同的结果

NSString *password = @"E7VRcIXn8yb2Ab+t/in9UzRof6vOpOYebgKbpt1GOcfDF8rpc5nZXngx1G8QfbDqsVrwZw26609GVwruUBrOirCI/WUT8U87fbD6lSy/zPwFIYC113LgXIEylYgzIWO4";
  NSString *pwd = [password AES256DecryptWithKey: @"abcd"];
  if (pwd) 
      NSString *checkKey = @"0sSBf7Ncyov+uzvDikOBiA==";
      NSString *uncryptChk = [checkKey AES256DecryptWithKey: pwd];

在 XCode4 中,结果是 "abcd",而在 XCode5 中,结果是 ""

【问题讨论】:

请注意,由于 ios 7 仍处于保密协议下,因此您不得在官方 Apple 开发者论坛之外谈论它。我建议你也把它贴在那里,因为你会更幸运地得到一个真正的答案。 您好,您找到解决方法了吗......? 【参考方案1】:

我自己遇到了这个问题。似乎他们修复了从 iOS6 到 iOS7 关于 [NSString keyCString:maxLength:encoding] 的错误 iOS6 上的旧方法会切断部分缓冲区以填充 keyPtr。

一个简单的解决方法是将 keyPTr 大小增加到

char keyPtr = kCCKeySizeAES256 * 2 + 1;

但是请记住,当您将应用程序从 6 升级到 7 时,它应该可以工作。 keyCString 截断长度以匹配 keyPtr 的大小。并将第一个字符替换为 0。因此要确保它在两个平台上都有效。添加上述代码,并设置keyPtr[0] = 0;

【讨论】:

以上是关于CCCrypt 不适用于 iOS 7 的 xcode 5的主要内容,如果未能解决你的问题,请参考以下文章

iOS5和iOS6的CCCrypt区别

CAGradientLayer 不适用于 iOS 7(但适用于 iOS 6)

UIToolBar tintColor 不适用于 iOS 7

iOS 7.1 模拟器不适用于 Xcode 7.1

UINavigationController 中的 UITabBarController 适用于 iOS 8 但不适用于 7

Kotlin Native (iOS),使用 CValuesRef 和 CCCrypt