Hi,

I was womdering if it is possible to update a MD5 Digest.
No functions seem te refelect this:

(C code)

        MD5_Init(&md5_ctx);
        MD5_Update(&md5_ctx, char *data, int);
        MD5_Update(&md5_ctx, char *data, int);
        MD5_Final(char *dst, &md5_ctx);


Notice the two updates, the md5() function from PHP, only allows one
update before 
finalizing. So without implementing the md5 functions in php nor
altering C code 
I was wondering if an update to the digest would be possible.

Cheers

Bolke


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to