mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	This enables SCRAM authentication for postgres_fdw when connecting to a foreign server without having to store a plain-text password on user mapping options. This is done by saving the SCRAM ClientKey and ServeryKey from the client authentication and using those instead of the plain-text password for the server-side SCRAM exchange. The new foreign-server or user-mapping option "use_scram_passthrough" enables this. Co-authored-by: Matheus Alcantara <mths.dev@pm.me> Co-authored-by: Peter Eisentraut <peter@eisentraut.org> Discussion: https://www.postgresql.org/message-id/flat/27b29a35-9b96-46a9-bc1a-914140869dac@gmail.com
		
			
				
	
	
		
			33 lines
		
	
	
		
			720 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			720 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # contrib/postgres_fdw/Makefile
 | |
| 
 | |
| MODULE_big = postgres_fdw
 | |
| OBJS = \
 | |
| 	$(WIN32RES) \
 | |
| 	connection.o \
 | |
| 	deparse.o \
 | |
| 	option.o \
 | |
| 	postgres_fdw.o \
 | |
| 	shippable.o
 | |
| PGFILEDESC = "postgres_fdw - foreign data wrapper for PostgreSQL"
 | |
| 
 | |
| PG_CPPFLAGS = -I$(libpq_srcdir)
 | |
| SHLIB_LINK_INTERNAL = $(libpq)
 | |
| 
 | |
| EXTENSION = postgres_fdw
 | |
| DATA = postgres_fdw--1.0.sql postgres_fdw--1.0--1.1.sql postgres_fdw--1.1--1.2.sql
 | |
| 
 | |
| REGRESS = postgres_fdw query_cancel
 | |
| TAP_TESTS = 1
 | |
| 
 | |
| ifdef USE_PGXS
 | |
| PG_CONFIG = pg_config
 | |
| PGXS := $(shell $(PG_CONFIG) --pgxs)
 | |
| include $(PGXS)
 | |
| else
 | |
| SHLIB_PREREQS = submake-libpq
 | |
| subdir = contrib/postgres_fdw
 | |
| top_builddir = ../..
 | |
| include $(top_builddir)/src/Makefile.global
 | |
| include $(top_srcdir)/contrib/contrib-global.mk
 | |
| endif
 |