在c#中我正在做
HashAlgorithm hash=SHA256.create();
string myHash = Convert.ToBase64String( hasher.ComputeHash(Encoding.UTF8.GetBytes("hello")));
在目标c中我正在做
const unsigned char arr[32];
CC_SHA256([@"hello" UTF8String], 32, &arr);
NSMutableData *HM = [NSData dataWithBytes:(const void *)arr length:32];
NSLog(@"macHah %@",[HM base64EncodingWithLineLength:0]);
但它们都产生不同的哈希