我想用我自己的自定义键在 iOS 上“散列”一个字符串;重要的是也要做相反的事情,例如
NSString *secretWord = @"Hello World!";
secretWord = [self hashWithKey:@"customKey"];
// secret Word is now something unreadable, like 'kjwlekjfoaijfoijwef'
NSLog(@"%@", [secretWord unhashWithKey:@"customKey"]); // prints 'Hello World!'
我怎样才能实现这样的目标?