mirror of
https://github.com/postgres/postgres.git
synced 2025-11-01 21:31:19 +03:00
Move SCRAM-related name definitions to scram-common.h
Mechanism names for SCRAM and channel binding names have been included in scram.h by the libpq frontend code, and this header references a set of routines which are only used by the backend. scram-common.h is on the contrary usable by both the backend and libpq, so getting those names from there seems more reasonable. Author: Michael Paquier <michael.paquier@gmail.com>
This commit is contained in:
@@ -13,13 +13,6 @@
|
||||
#ifndef PG_SCRAM_H
|
||||
#define PG_SCRAM_H
|
||||
|
||||
/* Name of SCRAM mechanisms per IANA */
|
||||
#define SCRAM_SHA256_NAME "SCRAM-SHA-256"
|
||||
#define SCRAM_SHA256_PLUS_NAME "SCRAM-SHA-256-PLUS" /* with channel binding */
|
||||
|
||||
/* Channel binding types */
|
||||
#define SCRAM_CHANNEL_BINDING_TLS_UNIQUE "tls-unique"
|
||||
|
||||
/* Status codes for message exchange */
|
||||
#define SASL_EXCHANGE_CONTINUE 0
|
||||
#define SASL_EXCHANGE_SUCCESS 1
|
||||
|
||||
Reference in New Issue
Block a user