OSDN Git Service

Authentication improvements:
[pg-rex/syncrep.git] / src / include / libpq / crypt.h
1 /*-------------------------------------------------------------------------
2  *
3  * crypt.h
4  *        Interface to libpq/crypt.c
5  *
6  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: crypt.h,v 1.20 2002/04/04 04:25:53 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PG_CRYPT_H
14 #define PG_CRYPT_H
15
16 #include "libpq/libpq-be.h"
17
18 /* Also defined in interfaces/odbc/md5.h */
19 #define MD5_PASSWD_LEN  35
20
21 #define isMD5(passwd)   (strncmp((passwd),"md5",3) == 0 && \
22                                                  strlen(passwd) == MD5_PASSWD_LEN)
23
24
25 extern int md5_crypt_verify(const Port *port, const char *user,
26                                  const char *pgpass);
27 extern bool md5_hash(const void *buff, size_t len, char *hexsum);
28 extern bool CheckMD5Pwd(char *passwd, char *storedpwd, char *seed);
29 /* Also defined in interfaces/odbc/md5.h */
30 extern bool EncryptMD5(const char *passwd, const char *salt,
31                    size_t salt_len, char *buf);
32
33 #endif