/*------------------------------------------------------------------------- * * 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.1.1 2006/09/08 03:36:04 t-ishii Exp $ * *------------------------------------------------------------------------- */ /* * This file is imported from PostgreSQL 8.1.3. * Modified by Taiki Yamaguchi */ #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