OSDN Git Service

New pgindent run with fixes suggested by Tom. Patch manually reviewed,
[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.18 2001/11/05 17:46:33 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PG_CRYPT_H
14 #define PG_CRYPT_H
15
16 #include "libpq/libpq-be.h"
17
18 #define CRYPT_PWD_FILE_SEPSTR   "\t"
19
20 #define MD5_PASSWD_LEN  35
21
22 #define isMD5(passwd)   (strncmp((passwd),"md5",3) == 0 && \
23                                                  strlen(passwd) == MD5_PASSWD_LEN)
24
25
26 extern char *crypt_getpwdfilename(void);
27 extern void load_password_cache(void);
28
29 extern int md5_crypt_verify(const Port *port, const char *user,
30                                  const char *pgpass);
31 extern bool md5_hash(const void *buff, size_t len, char *hexsum);
32 extern bool CheckMD5Pwd(char *passwd, char *storedpwd, char *seed);
33 extern bool EncryptMD5(const char *passwd, const char *salt,
34                    size_t salt_len, char *buf);
35
36 #endif