在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
首先谢谢4楼id0096替我修改的bug,当时由于只用于密码加密,所以没有测试中文,本次更新添加了objective-c的des解密和中文加密失败的修正。 最近做了一个移动项目,是有服务器和客户端类型的项目,客户端是要登录才行的,登录的密码要用DES加密,服务器是用Java开发的,客户端要同时支持多平台(Android、iOS),在处理iOS的DES加密的时候遇到了一些问题,起初怎么调都调不成和Android端生成的密文相同。最终一个忽然的想法让我找到了问题的所在,现在将代码总结一下,以备自己以后查阅。 首先,Java端的DES加密的实现方式,代码如下: 1 public class DES { 上述代码用到了一个Base64的编码类,其代码的实现方式如下: 1 public class Base64 { 以上便是Java端的DES加密方法的全部实现过程。 我还编写了一个将byte的二进制转换成16进制的方法,以便调试的时候使用打印输出加密后的byte数组的内容,这个方法不是加密的部分,只是为调试而使用的: 1 /**将二进制转换成16进制 下面是Objective-c在iOS上实现的DES加密算法: 1 const Byte iv[] = {1,2,3,4,5,6,7,8}; 2 +(NSString *) encryptUseDES:(NSString *)plainText key:(NSString *)key 3 { 4 NSString *ciphertext = nil; 5 NSData *textData = [plainText dataUsingEncoding:NSUTF8StringEncoding]; 6 NSUInteger dataLength = [textData length]; 7 unsigned char buffer[1024]; 8 memset(buffer, 0, sizeof(char)); 9 size_t numBytesEncrypted = 0; 10 CCCryptorStatus cryptStatus = CCCrypt(kCCEncrypt, kCCAlgorithmDES, 11 kCCOptionPKCS7Padding, 12 [key UTF8String], kCCKeySizeDES, 13 iv, 14 [textData bytes], dataLength, 15 buffer, 1024, 16 &numBytesEncrypted); 17 if (cryptStatus == kCCSuccess) { 18 NSData *data = [NSData dataWithBytes:buffer length:(NSUInteger)numBytesEncrypted]; 19 ciphertext = [Base64 encode:data]; 20 } 21 return ciphertext; 22 } 下面也是Objective-c的一个二进制转换为16进制的方法,也是为了测试方便查看写的: 1 +(NSString *) parseByte2HexString:(Byte *) bytes 以上的加密方法所在的包是CommonCrypto/CommonCryptor.h。 Base64的算法可以用你们自己写的那个,不一定必须使用我提供的这个。解密的时候还要用Base64进行密文的转换。 iOS下的Base64算法在后面 。 JAVA下的解密算法如下: 1 private static byte[] iv = { 1, 2, 3, 4, 5, 6, 7, 8 }; Base64的decode方法如下: 1 public static byte[] decode(String s) { Objective-c在下的DES解密算法: 1 +(NSString *)decryptUseDES:(NSString *)cipherText key:(NSString *)key 2 { 3 NSString *plaintext = nil; 4 NSData *cipherdata = [Base64 decode:cipherText]; 5 unsigned char buffer[1024]; 6 memset(buffer, 0, sizeof(char)); 7 size_t numBytesDecrypted = 0; 8 CCCryptorStatus cryptStatus = CCCrypt(kCCDecrypt, kCCAlgorithmDES, 9 kCCOptionPKCS7Padding, 10 [key UTF8String], kCCKeySizeDES, 11 iv, 12 [cipherdata bytes], [cipherdata length], 13 buffer, 1024, 14 &numBytesDecrypted); 15 if(cryptStatus == kCCSuccess) { 16 NSData *plaindata = [NSData dataWithBytes:buffer length:(NSUInteger)numBytesDecrypted]; 17 plaintext = [[NSString alloc]initWithData:plaindata encoding:NSUTF8StringEncoding]; 18 } 19 return plaintext; 20 } 下面是objective-c 实现的Base64工具对象,当然你也可以选择使用google的那个Base64类——GTMBase64(功能很强大),初步测试使用GTMBase64和使用我写的这个Base64效果都是一样的。 1 static const char encodingTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 2 3 @interface Base64() 4 +(int)char2Int:(char)c; 5 @end 6 7 @implementation Base64 8 9 +(NSString *)encode:(NSData *)data 10 { 11 if (data.length == 0) 12 return nil; 13 14 char *characters = malloc(data.length * 3 / 2); 15 16 if (characters == NULL) 17 return nil; 18 19 int end = data.length - 3; 20 int index = 0; 21 int charCount = 0; 22 int n = 0; 23 24 while (index <= end) { 25 int d = (((int)(((char *)[data bytes])[index]) & 0x0ff) << 16) 26 | (((int)(((char *)[data bytes])[index + 1]) & 0x0ff) << 8) 27 | ((int)(((char *)[data bytes])[index + 2]) & 0x0ff); 28 29 characters[charCount++] = encodingTable[(d >> 18) & 63]; 30 characters[charCount++] = encodingTable[(d >> 12) & 63]; 31 characters[charCount++] = encodingTable[(d >> 6) & 63]; 32 characters[charCount++] = encodingTable[d & 63]; 33 34 index += 3; 35 36 if(n++ >= 14) 37 { 38 n = 0; 39 characters[charCount++] = ' '; 40 } 41 } 42 43 if(index == data.length - 2) 44 { 45 int d = (((int)(((char *)[data bytes])[index]) & 0x0ff) << 16) 46 | (((int)(((char *)[data bytes])[index + 1]) & 255) << 8); 47 characters[charCount++] = encodingTable[(d >> 18) & 63]; 48 characters[charCount++] = encodingTable[(d >> 12) & 63]; 49 characters[charCount++] = encodingTable[(d >> 6) & 63]; 50 characters[charCount++] = '='; 51 } 52 else if(index == data.length - 1) 53 { 54 int d = ((int)(((char *)[data bytes])[index]) & 0x0ff) << 16; 55 characters[charCount++] = encodingTable[(d >> 18) & 63]; 56 characters[charCount++] = encodingTable[(d >> 12) & 63]; 57 characters[charCount++] = '='; 58 characters[charCount++] = '='; 59 } 60 NSString * rtnStr = [[NSString alloc] initWithBytesNoCopy:characters length:charCount encoding:NSUTF8StringEncoding freeWhenDone:YES]; 61 return rtnStr; 62 63 } 64 65 +(NSData *)decode:(NSString *)data 66 { 67 if(data == nil || data.length <= 0) { 68 return nil; 69 } 70 NSMutableData *rtnData = [[NSMutableData alloc]init]; 71 int slen = data.length; 72 int index = 0; 73 while (true) { 74 while (index < slen && [data characterAtIndex:index] <= ' ') { 75 index++; 76 } 77 if (index >= slen || index + 3 >= slen) { 78 break; 79 } 80 81 int byte = ([self char2Int:[data characterAtIndex:index]] << 18) + ([self char2Int:[data characterAtIndex:index + 1]] << 12) + ([self char2Int:[data characterAtIndex:index + 2]] << 6) + [self char2Int:[data characterAtIndex:index + 3]]; 82 Byte temp1 = (byte >> 16) & 255; 83 [rtnData appendBytes:&temp1 length:1]; 84 if([data characterAtIndex:index + 2] == '=') { 85 break; 86 } 87 Byte temp2 = (byte >> 8) & 255; 88 [rtnData appendBytes:&temp2 length:1]; 89 if([data characterAtIndex:index + 3] == '=') { 90 break; 91 } 92 Byte temp3 = byte & 255; 93 [rtnData appendBytes:&temp3 length:1]; 94 index += 4; 95 96 } 97 return rtnData; 98 } 99 100 +(int)char2Int:(char)c 101 { 102 if (c >= 'A' && c <= 'Z') { 103 return c - 65; 104 } else if (c >= 'a' && c <= 'z') { 105 return c - 97 + 26; 106 } else if (c >= '0' && c <= '9') { 107 return c - 48 + 26 + 26; 108 } else { 109 switch(c) { 110 case '+': 111 return 62; 112 case '/': 113 return 63; 114 case '=': 115 return 0; 116 default: 117 return -1; 118 } 119 } 120 } 121 122 @end 这个和java端的Base64的是一个算法,只是根据语言的特点不同有少许的改动。
Java端的测试代码如下: 1 String plaintext = "abcd"; 输出结果: 明文:abcd
1 NSString *plaintext = @"abcd"; 输出结果: 1 2012-04-05 12:00:47.348 TestEncrypt[806:f803] 明文:abcd
|
请发表评论