forked from machack666/pgpool-II
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmd5.h
More file actions
27 lines (22 loc) · 774 Bytes
/
md5.h
File metadata and controls
27 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*-------------------------------------------------------------------------
*
* md5.h
* Interface to md5.c
*
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgpool/pgpool-II/md5.h,v 1.1 2006/09/08 03:36:04 t-ishii Exp $
*
*-------------------------------------------------------------------------
*/
/*
* This file is imported from PostgreSQL 8.1.3.
* Modified by Taiki Yamaguchi <yamaguchi@sraoss.co.jp>
*/
#ifndef MD5_H
#define MD5_H
#define MD5_PASSWD_LEN 32
extern int pool_md5_hash(const void *buff, size_t len, char *hexsum);
extern int pool_md5_encrypt(const char *passwd, const char *salt, size_t salt_len, char *buf);
#endif