1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Use MD5 for wire protocol encryption for >= 7.2 client/server.

Allow pg_shadow to be MD5 encrypted.
Add ENCRYPTED/UNENCRYPTED option to CREATE/ALTER user.
Add password_encryption postgresql.conf option.
Update wire protocol version to 2.1.
This commit is contained in:
Bruce Momjian
2001-08-15 18:42:16 +00:00
parent 397f65d102
commit 38bb1abcda
27 changed files with 353 additions and 188 deletions

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: miscadmin.h,v 1.88 2001/08/05 02:06:50 tgl Exp $
* $Id: miscadmin.h,v 1.89 2001/08/15 18:42:15 momjian Exp $
*
* NOTES
* some of the information in this file should be moved to
@ -171,8 +171,10 @@ extern bool enableFsync;
extern bool allowSystemTableMods;
extern int SortMem;
/* a few postmaster startup options are exported here so the
configuration file processor has access to them */
/*
* A few postmaster startup options are exported here so the
* configuration file processor can access them.
*/
extern bool NetServer;
extern bool EnableSSL;