gpt4 book ai didi

objective-c - 多次 md5 一个字符串

转载 作者:行者123 更新时间:2023-11-30 16:01:41 24 4
gpt4 key购买 nike

在 Python 中多次 md5 一个字符串:

def md5(i):
return hashlib.md5(i).hexdigest().upper()


def md5x3(src):
f = hashlib.md5(src).digest()
s = hashlib.md5(f).digest()
t = md5(s)
return t

如何在 MacOS/iOS 上使用 OpenSSL 在 C 中实现上述内容,或在 MacOS/iOS 上使用 Objective-C 而不使用 OpenSSL 实现上述内容?

我正在尝试遵循,但其结果与 python 的不同。

#import <Foundation/Foundation.h>

#import <CommonCrypto/CommonDigest.h>
#import <CommonCrypto/CommonCryptor.h>

static char* hextostr(const unsigned char* in , int len)
{
char* res = (char*)malloc(len * 2 + 1);
int i = 0;
memset(res , 0 , len * 2 + 1);
while(i < len)
{
sprintf(res + i * 2 , "%02x" , in[i]);
i ++;
};
// i = 0;
// int reslength;
// reslength=(int)strlen(res);
// while(i < reslength)
// {
// res[i] = toupper(res[i]);
// i ++;
// };
return res;
}

int main (int argc, const char * argv[])
{

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];

NSString * foo = @"abcdefghij";

NSData * buf1 = [foo dataUsingEncoding:NSUTF8StringEncoding];
unsigned char result1[CC_MD5_DIGEST_LENGTH];
CC_MD5([buf1 bytes], (unsigned int)[buf1 length], result1);

NSData * buf2 = [[[NSString alloc] initWithFormat:@"%s", result1] dataUsingEncoding:NSUTF8StringEncoding];
unsigned char result2[CC_MD5_DIGEST_LENGTH];
CC_MD5(result1, (unsigned int)strlen(result1), result2);


NSData * buf3 = [[[NSString alloc] initWithFormat:@"%s", result2] dataUsingEncoding:NSUTF8StringEncoding];
unsigned char result3[CC_MD5_DIGEST_LENGTH];
CC_MD5(result2, (unsigned int)strlen(result2), result3);

NSString * res = [[NSString alloc] initWithFormat:
@"%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
result3[0], result3[1], result3[2], result3[3], result3[4], result3[5], result3[6], result3[7],
result3[8], result3[9], result3[10], result3[11], result3[12], result3[13], result3[14], result3[15]
];

NSLog(@"%s", hextostr(result1, CC_MD5_DIGEST_LENGTH));
NSLog(@"%s", hextostr(result2, CC_MD5_DIGEST_LENGTH));
NSLog(@"%s", hextostr(result3, CC_MD5_DIGEST_LENGTH));



[pool drain];
return 0;
}

最佳答案

使用摘要库,例如您可能已经安装的 OpenSSL。请参阅http://www.openssl.org/docs/crypto/md5.html 。 MD5 的源代码可在 http://userpages.umbc.edu/~mabzug1/cs/md5/md5.html 获取。 .

关于objective-c - 多次 md5 一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6214863/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com