#include #include /*** struct crypt_data --> the entire structure is used as a char[] buffer int initialized --> member exists to satisfy API requirements, currently not used char __buf[256]; --> large enough for any future password hash ***/ char *__crypt_r(const char *, const char *, struct crypt_data *); char *crypt(const char *key, const char *salt) { /* Note: update this size when we add more hash types */ static char buf[128]; return __crypt_r(key, salt, (struct crypt_data *)buf); }