【转】iOS: [NSString hash]出现同样的hash值问题 –计算string的MD5值

问题原因:

At least there are special circumstances for which this unreliability kicks in.

Comparing [a hash] and [b hash] of two different NSString is safe when:

  • the strings’ length is shorter or equal to 96 characters.

  • [a length] is different to [b length].

  • the concatinated first, middle, and last 32 characters of a differ to the concatinated components of b.

Otherwise every difference between the first and the middle 32 chars, as well as every difference between the middle and the last 32 characters, are not used while producing the [NSString hash] value.

解决方法:

For my case, the solution was pretty easy. I made use of a sha1 hash, which produced
a fingerprint from the whole string instead of pieces only. I got mine inspired by
the SHA1 method of Saurabh Sharma

  • (NSString )sha1 { NSData data = [self dataUsingEncoding:NSUTF8StringEncoding]; uint8 _t digest[CC_SHA1 _DIGEST_LENGTH]; CC_SHA1(data.bytes, data.length, digest); NSMutableString *output = [NSMutableString stringWithCapacity:CC _SHA1_DIGEST_LENGTH * 2]; for (int i = 0; i < CC _SHA1_DIGEST_LENGTH; i++) { [output appendFormat:@”%02x”, digest[i]]; } return output; }

The SHA1 was for the name of a cached file, generated by giving the complete URL of the resource to be cached. Works perfect. I already filed a pull request for

PS:

Calculating the md5 and sha1 hash in iOS sdk is pretty simple –

Step 1 – The very first thing you need to do is import CommonCrypto’s CommonDigest.h

Step 2 – Here is the real code for calculating SHA1 and MD5 hash –

SHA1 –

  1. -(NSString) sha1:(NSString)input
  2. {
  3. const char *cstr = [input cStringUsingEncoding:NSUTF8StringEncoding];
  4. NSData *data = [NSData dataWithBytes:cstr length:input.length];
  5. uint8_t digest[CC_SHA1_DIGEST_LENGTH];
  6. CC_SHA1(data.bytes, data.length, digest);
  7. NSMutableString* output = [NSMutableString stringWithCapacity:CC_SHA1_DIGEST_LENGTH * 2];
  8. for(int i = 0; i < CC_SHA1_DIGEST_LENGTH; i++)
  9. [output appendFormat:@”%02x”, digest[i]];
  10. return output;
  11. }

MD5 –

    • (NSString ) md5:(NSString ) input
  1. {
  2. const char *cStr = [input UTF8String];
  3. unsigned char digest[16];
  4. CC_MD5( cStr, strlen(cStr), digest ); // This is the md5 call
  5. NSMutableString *output = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
  6. for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
  7. [output appendFormat:@”%02x”, digest[i]];
  8. return output;
  9. }

Hope it will help someone!!

Original: https://www.cnblogs.com/wi100sh/p/14197303.html
Author: wi100sh
Title: 【转】iOS: [NSString hash]出现同样的hash值问题 –计算string的MD5值

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/553912/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球