diff options
author | Bruce Momjian | 2001-08-15 18:42:16 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-08-15 18:42:16 +0000 |
commit | 38bb1abcda9119957e836f731a1cfea6d2079499 (patch) | |
tree | 8f61d7b57cc171d8307a81dc7c4b7a382be58f43 /src/interfaces/odbc/connection.h | |
parent | 397f65d102b7f9998411f2a8c2d1c66dfe712320 (diff) |
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.
Diffstat (limited to 'src/interfaces/odbc/connection.h')
-rw-r--r-- | src/interfaces/odbc/connection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/odbc/connection.h b/src/interfaces/odbc/connection.h index d3eb8700b28..1038bf117ba 100644 --- a/src/interfaces/odbc/connection.h +++ b/src/interfaces/odbc/connection.h @@ -93,6 +93,7 @@ typedef enum #define AUTH_REQ_KRB5 2 #define AUTH_REQ_PASSWORD 3 #define AUTH_REQ_CRYPT 4 +#define AUTH_REQ_MD5 5 /* Startup Packet sizes */ #define SM_DATABASE 64 |