Cross Reference: mycrypt.h
xref
: /
dovecot
/
src
/
auth
/
mycrypt.h
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
mycrypt.h revision c25356d5978632df6203437e1953bcb29e0c736f
#
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