crypt.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * crypt.h
  4.  *   Interface to hba.c
  5.  *
  6.  *
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef PG_CRYPT_H
  10. #define PG_CRYPT_H
  11. #include "libpq/libpq-be.h"
  12. #define CRYPT_PWD_FILE "pg_pwd"
  13. #define CRYPT_PWD_FILE_SEPCHAR "'\t'"
  14. #define CRYPT_PWD_FILE_SEPSTR "t"
  15. #define CRYPT_PWD_RELOAD_SUFX ".reload"
  16. extern char **pwd_cache;
  17. extern int pwd_cache_count;
  18. extern char *crypt_getpwdfilename(void);
  19. extern char *crypt_getpwdreloadfilename(void);
  20. #ifdef NOT_USED
  21. extern MsgType crypt_salt(const char *user);
  22. #endif
  23. extern int crypt_verify(Port *port, const char *user, const char *pgpass);
  24. #endif