diff options
Diffstat (limited to 'contrib/syslinux-4.02/com32/libutil/include/xcrypt.h')
-rw-r--r-- | contrib/syslinux-4.02/com32/libutil/include/xcrypt.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/com32/libutil/include/xcrypt.h b/contrib/syslinux-4.02/com32/libutil/include/xcrypt.h new file mode 100644 index 0000000..c9ced46 --- /dev/null +++ b/contrib/syslinux-4.02/com32/libutil/include/xcrypt.h @@ -0,0 +1,10 @@ +#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 |