xscrypt.c
上传用户:lampled
上传日期:2007-01-07
资源大小:94k
文件大小:0k
源码类别:

Web服务器

开发平台:

Unix_Linux

  1. /* Copyright (C) 1995, 1996 by Sven Berkvens (sven@stack.nl) */
  2. #include "config.h"
  3. #include <unistd.h>
  4. #ifdef HAVE_CRYPT_H
  5. #include <crypt.h>
  6. #endif /* HAVE_CRYPT_H */
  7. #include "string.h"
  8. extern VOID
  9. xs_encrypt DECL1(char *, buffer)
  10. {
  11. strcpy(buffer, crypt(buffer, "xs"));
  12. }