crypt.h 568 B

123456789101112131415161718192021
  1. /*-------------------------------------------------------------------------
  2. *
  3. * crypt.h
  4. * Interface to libpq/crypt.c
  5. *
  6. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * src/include/libpq/crypt.h
  10. *
  11. *-------------------------------------------------------------------------
  12. */
  13. #ifndef PG_CRYPT_H
  14. #define PG_CRYPT_H
  15. #include "libpq/libpq-be.h"
  16. extern int md5_crypt_verify(const Port *port, const char *role,
  17. char *client_pass, char **logdetail);
  18. #endif