Re: SHA1,MD5 calculation in case of where it left off

2012-01-27 Thread Prabu RM
or MD5_ReSet() like functions which should clean up the previous missed CTX before calling MD5_Init() for next file. Since we used to call Md5_Init(),MD5_Update and MD5_Final from different places w.r.t application design if we missed Md5_Final some leak will happen at openssl library level. Righ

Re: SHA1,MD5 calculation in case of where it left off

2012-01-26 Thread Prabu RM
block then it will avoid the process of MD5 update of already stored 500 MB before the next transfer schedule. Simply is it possible to get the CTX at block level and proceed? Regards, Prabu RM. On Thu, Jan 26, 2012 at 7:21 PM, Jakob Bohm wrote: > On 1/26/2012 7:25 AM, Prabu RM wrote: >

SHA1,MD5 calculation in case of where it left off

2012-01-25 Thread Prabu RM
this how can i work with MD5,SHA hash algorithms where i wish "Where it left off"? Could you please help me? Simply how can i handle CRC of incomplete file in next schedule? Is there any other way rather than transferring entire file? Regards, Prabu RM.