123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef PPPCRYPT_H
- #define PPPCRYPT_H
- #ifdef HAVE_CRYPT_H
- #include <crypt.h>
- #endif
- #ifndef USE_CRYPT
- #include <des.h>
- #endif
- extern bool DesSetkey __P((u_char *));
- extern bool DesEncrypt __P((u_char *, u_char *));
- extern bool DesDecrypt __P((u_char *, u_char *));
- #endif
|