[pgpool-committers: 4972] pgpool: The initial commit for SCRAM authentication support, The code i

Muhammad Usama m.usama at gmail.com
Tue Aug 7 21:43:32 JST 2018


The initial commit for SCRAM authentication support, The code is compilable and
is in working state. But it is still not the production quality and needs lots
of cleanup, commenting, testing and documentation updates.

Branch
------
SCRAM_AUTH

Details
-------
https://git.postgresql.org/gitweb?p=pgpool2.git;a=commitdiff;h=d00018514dff73fe8f280ef78f4bf26c86342c0a

Modified Files
--------------
Makefile.in                     |   828 -
aclocal.m4                      |   203 +-
configure                       |   258 +-
doc.ja/Makefile.in              |    24 +-
doc.ja/src/Makefile.in          |    24 +-
doc.ja/src/sgml/Makefile.in     |    24 +-
doc/Makefile.in                 |    24 +-
doc/src/Makefile.in             |    24 +-
doc/src/sgml/Makefile.in        |    24 +-
src/Makefile.am                 |     4 +
src/Makefile.in                 |    43 +-
src/auth/auth-scram.c           |  1628 +
src/auth/pool_auth.c            |   558 +-
src/auth/pool_hba.c             |    36 +-
src/auth/pool_passwd.c          |    13 +
src/include/Makefile.in         |    29 +-
src/include/auth/pool_hba.h     |     3 +-
src/include/auth/pool_passwd.h  |     8 +
src/include/auth/scram-common.h |    67 +
src/include/auth/scram.h        |    38 +
src/include/config.h.in         |     3 +
src/include/pool.h              |     1 +
src/include/pool_type.h         |    13 +-
src/include/utils/base64.h      |    19 +
src/include/utils/sha2.h        |   116 +
src/libs/Makefile.in            |    24 +-
src/libs/pcp/Makefile.in        |    25 +-
src/parser/Makefile.in          |    25 +-
src/parser/gram.c               | 60340 +++++++++++++++++++-------------------
src/parser/gram.h               |   967 +-
src/parser/scan.c               |   226 +-
src/sample/pool_hba.conf.sample |     4 +-
src/tools/Makefile.in           |    25 +-
src/tools/pcp/Makefile.in       |    24 +-
src/tools/pgmd5/Makefile.in     |    24 +-
src/tools/pgmd5/pool_config.c   |  2318 +-
src/utils/base64.c              |   196 +
src/utils/scram-common.c        |   238 +
src/utils/sha2.c                |   999 +
src/watchdog/Makefile.in        |    24 +-
40 files changed, 35658 insertions(+), 33813 deletions(-)



More information about the pgpool-committers mailing list