IPhone computing large file MD5

Source: Internet
Author: User
+  (  Nsstring  *  ) Filemd5 :  ( Nsstring  *  )  Path  {      Nsfilehandle   * Handle=   [  Nsfilehandle   Filehandleforreadingatpath  :  Path  ] ;If  ( Handle =   Nil   )   Return @"Error getting file MD5" ; // File didnt exist Cc_md5_ctx MD5; cc_md5_init (  & MD5 ) ; Bool Done =   No ; While  (  ! Done )      {         Nsdata  * Filedata =   [ Handle Readdataoflength  : Chunk_size] ; Cc_md5_update (  & MD5, [ Filedata Bytes  ] ,[ Filedata Length  ]  ) ; If  (  [ Filedata Length  ]   =   0   ) Done =  Yes ; }      Unsigned   Char Digest [ Cc_md5_digest_length ] ; Cc_md5_final( Digest, & MD5 ) ; Nsstring  * S =   [ Nsstring   Stringwithformat  : @ "% 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x % 02x" , Digest [  0 ] , Digest [  1  ] , Digest [  2 ] , Digest [  3  ] , Digest [  4 ] , Digest [  5  ] , Digest [  6 ] , Digest [  7  ] , Digest [  8 ] , Digest [  9  ] , Digest [  10 ] , Digest [  11  ] , Digest [  12 ] , Digest [  13  ] , Digest [  14 ] , Digest [  15  ]  ] ; Return S;} 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.