• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _LIBUTIL_XCRYPT_H
2 #define _LIBUTIL_XCRYPT_H
3 
4 /* Extended crypt() implementations */
5 
6 char *crypt_md5(const char *, const char *);
7 char *sha256_crypt(const char *, const char *);
8 char *sha512_crypt(const char *, const char *);
9 
10 #endif
11