/usr/include/dovecot/mycrypt.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | #ifndef MYCRYPT_H
#define MYCRYPT_H
/* A simple wrapper to crypt(). Problem with it is that it requires
_XOPEN_SOURCE define which breaks other things. */
char *mycrypt(const char *key, const char *salt);
#endif
|