search for: md5_finish_ctx

Displaying 4 results from an estimated 4 matches for "md5_finish_ctx".

2020 May 01
4
Request: tools::md5sum should accept connections and finally in-memory objects
...har *buffer, size_t len, void *resblock) { struct md5_ctx ctx; /* Initialize the computation context. */ md5_init_ctx (&ctx); /* Process whole buffer but last len % 64 bytes. */ md5_process_bytes (buffer, len, &ctx); /* Put result in desired memory area. */ return md5_finish_ctx (&ctx, resblock); } #endif --- 2) How can the R-community help so that this feature becomes available in package 'tools'? Suggestions: As a first step, it would be great if tools::md5sum would support connections (credit goes to Henrik for the idea). E.g., instead of the signature...
2020 May 01
0
Request: tools::md5sum should accept connections and finally in-memory objects
...t md5_ctx ctx; > > /* Initialize the computation context. */ > md5_init_ctx (&ctx); > > /* Process whole buffer but last len % 64 bytes. */ > md5_process_bytes (buffer, len, &ctx); > > /* Put result in desired memory area. */ > return md5_finish_ctx (&ctx, resblock); > } > #endif > --- > > 2) How can the R-community help so that this feature becomes available > in package 'tools'? > > Suggestions: > As a first step, it would be great if tools::md5sum would support > connections (credit goes to Henrik...
2020 May 01
0
Request: tools::md5sum should accept connections and finally in-memory objects
...> { > struct md5_ctx ctx; > > /* Initialize the computation context. */ > md5_init_ctx (&ctx); > > /* Process whole buffer but last len % 64 bytes. */ > md5_process_bytes (buffer, len, &ctx); > > /* Put result in desired memory area. */ > return md5_finish_ctx (&ctx, resblock); > } > #endif > --- > > 2) How can the R-community help so that this feature becomes available in package 'tools'? > > Suggestions: > As a first step, it would be great if tools::md5sum would support connections (credit goes to Henrik for the i...
2020 May 01
1
Request: tools::md5sum should accept connections and finally in-memory objects
...>> >> ?/* Initialize the computation context. ?*/ >> ?md5_init_ctx (&ctx); >> >> ?/* Process whole buffer but last len % 64 bytes. ?*/ >> ?md5_process_bytes (buffer, len, &ctx); >> >> ?/* Put result in desired memory area. ?*/ >> ?return md5_finish_ctx (&ctx, resblock); >> } >> #endif >> --- >> >> 2) How can the R-community help so that this feature becomes available >> in package 'tools'? >> >> Suggestions: >> As a first step, it would be great if tools::md5sum would support &gt...