diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-02-10 22:50:32 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-02-10 22:50:32 -0800 |
commit | 830cd01e2135a4e6e9ef06d1680fe9cd5a066e74 (patch) | |
tree | 7b1b824447704fbdc9effae869005f636f05dcb0 /com32/libutil/include | |
parent | a62aaffeead17edc61e509ea643af408743619d5 (diff) | |
download | syslinux-830cd01e2135a4e6e9ef06d1680fe9cd5a066e74.tar.gz syslinux-830cd01e2135a4e6e9ef06d1680fe9cd5a066e74.tar.xz syslinux-830cd01e2135a4e6e9ef06d1680fe9cd5a066e74.zip |
libutil: add header file <xcrypt.h> for extended crypt routines
Add a common header file, xcrypt.h, for the various extended crypt
routines (md5, sha256, sha512).
Diffstat (limited to 'com32/libutil/include')
-rw-r--r-- | com32/libutil/include/xcrypt.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/com32/libutil/include/xcrypt.h b/com32/libutil/include/xcrypt.h new file mode 100644 index 00000000..89bc8bc6 --- /dev/null +++ b/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 |