在iphone中进行base64解密

时间:2010-12-27 13:38:41

标签: iphone

我从.net网络服务器获取图像,该服务器采用base64编码。

通过Google搜索,我找到了encryption and decryption

的来源

我试过这个

#import <Foundation/Foundation.h>

@class NSString;

@interface NSData (NSDataAdditions)

+ (NSData *) base64DataFromString:(NSString *)string;

-------------------------------------------

#import "NSDataAdditions.h"

@implementation NSData (NSDataAdditions)

+ (NSData *) base64DataFromString: (NSString *)string {
  unsigned long ixtext, lentext;
  unsigned char ch, input[4], output[3];
  short i, ixinput;
  Boolean flignore, flendtext = false;
  const char *temporary;
  NSMutableData *result;

  if (!string)
    return [NSData data];

  ixtext = 0;
  temporary = [string UTF8String];
  lentext = [string length];
  result = [NSMutableData dataWithCapacity: lentext];
  ixinput = 0;
  while (true) {
    if (ixtext >= lentext)
      break;
    ch = temporary[ixtext++];
    flignore = false;
    if ((ch >= 'A') && (ch <= 'Z'))
      ch = ch - 'A';
    else if ((ch >= 'a') && (ch <= 'z'))
      ch = ch - 'a' + 26;
    else if ((ch >= '0') && (ch <= '9'))
      ch = ch - '0' + 52;
    else if (ch == '+')
      ch = 62;
    else if (ch == '=')
      flendtext = true;
    else if (ch == '/')
      ch = 63;
    else
      flignore = true; 

    if (!flignore) {
      short ctcharsinput = 3;
      Boolean flbreak = false;

      if (flendtext) {
         if (ixinput == 0)
           break;                
         if ((ixinput == 1) || (ixinput == 2)) {
           ctcharsinput = 1;
         else
           ctcharsinput = 2;

         ixinput = 3;
         flbreak = true;
      }

      input[ixinput++] = ch;

      if (ixinput == 4)
        ixinput = 0;

      output[0] = (input[0] << 2) | ((input[1] & 0x30) >> 4);
      output[1] = ((input[1] & 0x0F) << 4) | ((input[2] & 0x3C) >> 2);
      output[2] = ((input[2] & 0x03) << 6) | (input[3] & 0x3F);

      for (i = 0; i < ctcharsinput; i++)
        [result appendBytes: &output[i] length: 1];
    }

    if (flbreak)
      break;
  }
  return result;
}

@end

但它通过解决未解密的错误显示错误。

我试试这个link

但是我没有通过这个链接理解。

任何人都可以帮助我。

在iphone中发布一些base64解密代码。

提前感谢你。

2 个答案:

答案 0 :(得分:2)

您应该使用像VGVzdHN0cmluZw==这样的Base64测试字符串来测试此方法。

使用http://www.motobit.com/util/base64-decoder-encoder.asp调试您的数据。

修改
您应该将您的字符串在线转换为在您的Objective C代码中测试它!你是否聪明并未将该方法传递给真正的Base64编码字符串。

答案 1 :(得分:0)

这个链接可以帮助你在base64中进行编码/解码。

http://maniacdev.com/2011/06/open-source-easy-base-64-encodedecode-and-aes-encryption-library/

感谢。