Displaying 4 results from an estimated 4 matches for "md5_process_byt".
Did you mean:
md5_process_bytes
2020 May 01
4
Request: tools::md5sum should accept connections and finally in-memory objects
...to the wanted ASCII representation of the message
digest. */
static void *
md5_buffer (const char *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...
2020 May 01
0
Request: tools::md5sum should accept connections and finally in-memory objects
...igest. */
> static void *
> md5_buffer (const char *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'?
>
> Suggesti...
2020 May 01
0
Request: tools::md5sum should accept connections and finally in-memory objects
...essage
> digest. */
> static void *
> md5_buffer (const char *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:
> A...
2020 May 01
1
Request: tools::md5sum should accept connections and finally in-memory objects
...tic void *
>> md5_buffer (const char *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 'to...