ceci est mon premier post. Je fais construire une application iPhone et collé avec les éléments suivants:
unsigned char hashedChars[32];
CC_SHA256([inputString UTF8String], [inputString lengthOfBytesUsingEncoding:NSASCIIStringEncoding], hashedChars);
NSData *hashedData = [NSData dataWithBytes:hashedChars length:32];
NSLog(@"hashedData = %@", hashedData);
Le journal est montrant comme:
hashedData = <abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh>
- note hashedData est NSData, pas NSString
Mais ce dont j'ai besoin est de convertir hashedData en NSString qui ressemble à ceci:
NSString *someString = @"abcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefgh";
Donc, fondamentalement, le résultat doit être comme hashedData sauf que je ne veux pas les crochets et les espaces entre les deux.
Toute aide est très appréciée.