[Bug 1555] md4.h and md5.h not installed

bugzilla-daemon at rtems.org bugzilla-daemon at rtems.org
Mon Jun 14 13:21:40 UTC 2010


https://www.rtems.org/bugzilla/show_bug.cgi?id=1555





--- Comment #6 from Ralf Corsepius <ralf.corsepius at rtems.org>  2010-06-14 08:21:39 ---
Let me add:

To be able to use the current API, your code needs a variable of type
"MD5_CTX".

When a variable of this type is available, the size of the digest is implicitly
available, too.

Example:

#include <md5.h>
#include <stdio.h>

int main()
{
  MD5_CTX ctx;

  printf( "%zd\n", sizeof(ctx.digest) );
}

-- 
Configure bugmail: https://www.rtems.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the bugs mailing list