0
我想用我自己的自定義密鑰在iOS上「散列」一個字符串;重要的是做相反的事情,例如iOS:NSString的可逆散列?
NSString *secretWord = @"Hello World!";
secretWord = [self hashWithKey:@"customKey"];
// secret Word is now something unreadable, like 'kjwlekjfoaijfoijwef'
NSLog(@"%@", [secretWord unhashWithKey:@"customKey"]); // prints 'Hello World!'
我該如何做到這樣?
加密是你正在尋找的解決方案,哈希是隻有單向 – Tim 2013-04-08 12:16:57