gpt4 book ai didi

xcode - 如何在 iPhone 中生成 UDID 的 MD5 散列

转载 作者:行者123 更新时间:2023-12-01 08:29:18 32 4
gpt4 key购买 nike

我已经尝试了很多但无法弄清楚如何生成 iPhone 设备的 UDID 代码的 MD5 哈希

原因:我必须使用该哈希作为登录网站的后台密码。

请帮忙。

提前致谢。

最佳答案

您可以尝试以下代码将 UDID 字符串转换为 MD5。

 #import <CommonCrypto/CommonDigest.h>

NSString *udid = [[UIDevice currentDevice] uniqueIdentifier];
NSString *hashStr = [self converIntoMD5:udid];



- (NSString *)convertIntoMD5:(NSString *) string{
const char *cStr = [string UTF8String];
unsigned char digest[16];

CC_MD5( cStr, strlen(cStr), digest ); // This is the md5 call

NSMutableString *resultString = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];

for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
[resultString appendFormat:@"%02x", digest[i]];
return resultString;
}

关于xcode - 如何在 iPhone 中生成 UDID 的 MD5 散列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14556697/

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