在其他平台中经常会计算MD5值,在iOS平台中也提供了该方法,首先需要导入头文件

  1. #import <CommonCrypto/CommonDigest.h>

方法CC_MD5可以获取MD5的16个字符的数组,再通过%02X的形式输出即可获取32位MD5值。

  1. @implementation NSString (CCCryptUtil)
  2. -(NSString*) md5 {
  3. const char * cStrValue = [self UTF8String];
  4. unsigned char theResult[CC_MD5_DIGEST_LENGTH];
  5. CC_MD5(cStrValue, strlen(cStrValue), theResult);
  6. return [NSString stringWithFormat:@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
  7. theResult[0], theResult[1], theResult[2], theResult[3],
  8. theResult[4], theResult[5], theResult[6], theResult[7],
  9. theResult[8], theResult[9], theResult[10], theResult[11],
  10. theResult[12], theResult[13], theResult[14], theResult[15]];
  11. }
  12. @end

MD5只能称为一种不可逆的加密算法,只能用作一些检验过程,不能恢复其原文。

apple还提供了RSA、DES、AES等加密算法,见到国外的网站关于AES加密的算法,在此经过加工可以用于字符串加密机密,可用于安全性要求较高的应用。

首先需要导入头文件

  1. #import <CommonCrypto/CommonCryptor.h>

将NSData分类,添加NSData加密解密方法

  1. @implementation NSData (CCCryptUtil)
  2. - (NSData*)AES256EncryptWithKey:(NSString*)key {
  3. char keyPtr[kCCKeySizeAES256 + 1]; // room for terminator (unused)
  4. bzero(keyPtr, sizeof(keyPtr)); // fill with zeroes (for padding)
  5. [key getCString:keyPtr maxLength:sizeof(keyPtr) encoding:NSUTF8StringEncoding];
  6. NSUInteger dataLength = [self length];
  7. size_t bufferSize           = dataLength + kCCBlockSizeAES128;
  8. void* buffer                = malloc(bufferSize);
  9. size_t numBytesEncrypted    = 0;
  10. CCCryptorStatus cryptStatus = CCCrypt(kCCEncrypt, kCCAlgorithmAES128, kCCOptionPKCS7Padding,
  11. keyPtr, kCCKeySizeAES256,
  12. NULL /* initialization vector (optional) */,
  13. [self bytes], dataLength, /* input */
  14. buffer, bufferSize, /* output */
  15. &numBytesEncrypted);
  16. if (cryptStatus == kCCSuccess) {
  17. return [NSData dataWithBytesNoCopy:buffer length:numBytesEncrypted];
  18. }
  19. free(buffer);
  20. return nil;
  21. }
  22. - (NSData*)AES256DecryptWithKey:(NSString*)key {
  23. char keyPtr[kCCKeySizeAES256 + 1]; // room for terminator (unused)
  24. bzero(keyPtr, sizeof(keyPtr)); // fill with zeroes (for padding)
  25. // fetch key data
  26. [key getCString:keyPtr maxLength:sizeof(keyPtr) encoding:NSUTF8StringEncoding];
  27. NSUInteger dataLength = [self length];
  28. size_t bufferSize           = dataLength + kCCBlockSizeAES128;
  29. void* buffer                = malloc(bufferSize);
  30. size_t numBytesDecrypted    = 0;
  31. CCCryptorStatus cryptStatus = CCCrypt(kCCDecrypt, kCCAlgorithmAES128, kCCOptionPKCS7Padding,
  32. keyPtr, kCCKeySizeAES256,
  33. NULL /* initialization vector (optional) */,
  34. [self bytes], dataLength, /* input */
  35. buffer, bufferSize, /* output */
  36. &numBytesDecrypted);
  37. if (cryptStatus == kCCSuccess) {
  38. return [NSData dataWithBytesNoCopy:buffer length:numBytesDecrypted];
  39. }
  40. free(buffer); //free the buffer;
  41. return nil;
  42. }
  43. @end

上述代码AES256EncryptWithKey方法为加密函数,AES256DecryptWithKey为解密函数,加密和解密方法使用的参数密钥均为32位长度的字符串,所以可以将任意的字符串经过md5计算32位字符串作为密钥,这样可以允许客户输入任何长度的密钥,并且不同密钥的MD5值也不会重复。

结合上述代码,加工NSString类,提供字符串的AES加密解密方法。代码如下:

  1. @implementation NSString (CCCryptUtil)
  2. // md5方法此处省略
  3. + (NSData*)AES256Encrypt:(NSString*)strSource withKey:(NSString*)key {
  4. NSData *dataSource = [strSource dataUsingEncoding:NSUTF8StringEncoding];
  5. return [dataSource AES256EncryptWithKey:[key md5]];
  6. }
  7. + (NSString*)AES256Decrypt:(NSData*)dataSource withKey:(NSString*)key {
  8. NSData *decryptData = [dataSource AES256DecryptWithKey:[key md5]];
  9. return [[NSString alloc] initWithData:decryptData encoding:NSUTF8StringEncoding];
  10. }
  11. @end
04-13 15:49