rc-md5.h 484 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * md5.h Structures and prototypes for md5.
  3. *
  4. * Version: $Id: md5.h,v 1.2 2007/06/21 18:07:24 cparker Exp $
  5. * License: BSD
  6. *
  7. */
  8. #ifndef _RC_MD5_H
  9. #define _RC_MD5_H
  10. #include "radius_config.h"
  11. #include <stdlib.h>
  12. #ifdef HAVE_NETTLE
  13. #include <nettle/md5-compat.h>
  14. #else
  15. #include "fr_md5.h"
  16. #endif /* HAVE_NETTLE */
  17. void rc_md5_calc(unsigned char *output, unsigned char const *input,
  18. size_t inputlen);
  19. #endif /* _RC_MD5_H */