码迷,mamicode.com
首页 > 其他好文 > 详细

字符串异或加密

时间:2015-06-30 20:01:20      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

/**

 *  字符串异或加密

 *

 *  @param oldStr 被加密的字符串

 *  @param x      字符偏移量

 *

 *  @return 加密后的字符串

 */

- (NSString *)getCharArrayUsingString:(NSString *)oldstr withCharOffset:(int)x

{

    if (nil == oldstr || [@"" isEqualToString:oldstr]) {

        return @"";

    }

    

    unichar *charArray = malloc(sizeof(unichar) * (oldstr.length + 1));

    

    int nCount = (int)oldstr.length;

    

    for(int i = 0; i < nCount; i++){

        charArray[i] = [oldstr characterAtIndex:i] ^ x;

    }

    

    charArray[nCount] = ‘\0‘;

    

    NSString *newStr = [NSString stringWithCharacters:charArray length:nCount];

    

    free(charArray);

    

    return newStr;

}

 

字符串异或加密

标签:

原文地址:http://www.cnblogs.com/liuguanlei/p/4611312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!