md5crypt.h 744 B

1234567891011121314151617181920212223
  1. /*
  2. * ----------------------------------------------------------------------------
  3. * "THE BEER-WARE LICENSE" (Revision 42):
  4. * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
  5. * can do whatever you want with this stuff. If we meet some day, and you think
  6. * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
  7. * ----------------------------------------------------------------------------
  8. */
  9. #ifndef _MD5CRYPT_H
  10. #define _MD5CRYPT_H
  11. #include "config.h"
  12. #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
  13. int is_md5_salt(const char *);
  14. char *md5_crypt(const char *, const char *);
  15. #endif /* defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT) */
  16. #endif /* MD5CRYPT_H */