blob: 5fb559d84b2bd1b62a57acd422f671eef26c6e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | 
/*-------------------------------------------------------------------------
 *
 * oauth-common.h
 *		Declarations for helper functions used for OAuth/OIDC authentication
 *
 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/common/oauth-common.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef OAUTH_COMMON_H
#define OAUTH_COMMON_H
/* Name of SASL mechanism per IANA */
#define OAUTHBEARER_NAME "OAUTHBEARER"
#endif							/* OAUTH_COMMON_H */
  |