allwinner_a64/android/external/syslinux/com32/libutil/include/xcrypt.h
2018-08-08 16:14:42 +08:00

10 lines
242 B
C

#ifndef _LIBUTIL_XCRYPT_H
#define _LIBUTIL_XCRYPT_H
/* Extended crypt() implementations */
char *crypt_md5(const char *, const char *);
char *sha256_crypt(const char *, const char *);
char *sha512_crypt(const char *, const char *);
#endif