md5.h 901 B

123456789101112131415161718192021222324252627282930
  1. /*-------------------------------------------------------------------------
  2. *
  3. * md5.h
  4. * Interface to libpq/md5.c
  5. *
  6. * These definitions are needed by both frontend and backend code to work
  7. * with MD5-encrypted passwords.
  8. *
  9. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  10. * Portions Copyright (c) 1994, Regents of the University of California
  11. *
  12. * src/include/libpq/md5.h
  13. *
  14. *-------------------------------------------------------------------------
  15. */
  16. #ifndef PG_MD5_H
  17. #define PG_MD5_H
  18. #define MD5_PASSWD_LEN 35
  19. #define isMD5(passwd) (strncmp(passwd, "md5", 3) == 0 && \
  20. strlen(passwd) == MD5_PASSWD_LEN)
  21. extern bool pg_md5_hash(const void *buff, size_t len, char *hexsum);
  22. extern bool pg_md5_binary(const void *buff, size_t len, void *outbuf);
  23. extern bool pg_md5_encrypt(const char *passwd, const char *salt,
  24. size_t salt_len, char *buf);
  25. #endif