Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
55acfcbf
Commit
55acfcbf
authored
Mar 07, 2017
by
Heikki Linnakangas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix comments in SCRAM-SHA-256 patch.
Amit Kapila.
parent
5ee21977
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
src/backend/libpq/auth-scram.c
src/backend/libpq/auth-scram.c
+1
-1
src/common/base64.c
src/common/base64.c
+1
-1
src/common/scram-common.c
src/common/scram-common.c
+1
-1
src/include/common/base64.h
src/include/common/base64.h
+1
-1
src/include/common/scram-common.h
src/include/common/scram-common.h
+2
-2
src/include/libpq/scram.h
src/include/libpq/scram.h
+1
-1
src/interfaces/libpq/fe-auth-scram.c
src/interfaces/libpq/fe-auth-scram.c
+1
-1
No files found.
src/backend/libpq/auth-scram.c
View file @
55acfcbf
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
* to the encoding being used, whatever that is. We cannot avoid that in
* to the encoding being used, whatever that is. We cannot avoid that in
* general, after logging in, but let's do what we can here.
* general, after logging in, but let's do what we can here.
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* src/backend/libpq/auth-scram.c
* src/backend/libpq/auth-scram.c
...
...
src/common/base64.c
View file @
55acfcbf
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* base64.c
* base64.c
* Encoding and decoding routines for base64 without whitespace.
* Encoding and decoding routines for base64 without whitespace.
*
*
* Copyright (c) 2001-201
6
, PostgreSQL Global Development Group
* Copyright (c) 2001-201
7
, PostgreSQL Global Development Group
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
...
...
src/common/scram-common.c
View file @
55acfcbf
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* backend, for implement the Salted Challenge Response Authentication
* backend, for implement the Salted Challenge Response Authentication
* Mechanism (SCRAM), per IETF's RFC 5802.
* Mechanism (SCRAM), per IETF's RFC 5802.
*
*
* Portions Copyright (c) 201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 201
7
, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
* IDENTIFICATION
* src/common/scram-common.c
* src/common/scram-common.c
...
...
src/include/common/base64.h
View file @
55acfcbf
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* Encoding and decoding routines for base64 without whitespace
* Encoding and decoding routines for base64 without whitespace
* support.
* support.
*
*
* Portions Copyright (c) 2001-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 2001-201
7
, PostgreSQL Global Development Group
*
*
* src/include/common/base64.h
* src/include/common/base64.h
*/
*/
...
...
src/include/common/scram-common.h
View file @
55acfcbf
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
* scram-common.h
* scram-common.h
* Declarations for helper functions used for SCRAM authentication
* Declarations for helper functions used for SCRAM authentication
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* src/include/common/
relpath
.h
* src/include/common/
scram-common
.h
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
...
src/include/libpq/scram.h
View file @
55acfcbf
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* scram.h
* scram.h
* Interface to libpq/scram.c
* Interface to libpq/scram.c
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* src/include/libpq/scram.h
* src/include/libpq/scram.h
...
...
src/interfaces/libpq/fe-auth-scram.c
View file @
55acfcbf
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
* fe-auth-scram.c
* fe-auth-scram.c
* The front-end (client) implementation of SCRAM authentication.
* The front-end (client) implementation of SCRAM authentication.
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment