Getting MD5 and SHA-1

后端 未结 1 1508
天命终不由人
天命终不由人 2021-02-04 13:01

I am looking for some help in getting MD5 and SHA-1 in my iPhone app. Can anybody give me an idea on how to get these?

1条回答
  •  半阙折子戏
    2021-02-04 13:45

    #include 
    
    -(NSString*) sha1:(NSString*)input
    {
    
     NSData *data = [input 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;
    
    }
    
    - (NSString *) md5:(NSString *) input
    {
     const char *cStr = [input UTF8String];
     unsigned char digest[CC_MD5_DIGEST_LENGTH];
     CC_MD5( cStr, (CC_LONG)strlen(cStr), digest ); // This is the md5 call
    
     NSMutableString *output = [NSMutableString stringWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
    
     for(int i = 0; i < CC_MD5_DIGEST_LENGTH; i++)
     [output appendFormat:@"%02x", digest[i]];
    
     return  output;
    
    }
    

    also have a look at my blog post here - http://www.makebetterthings.com/blogs/iphone/how-to-get-md5-and-sha1-in-objective-c-ios-sdk/

    0 讨论(0)
提交回复
热议问题