Re: ssl passphrase callback
Robert Haas <robertmhaas@gmail.com>
From: Robert Haas <robertmhaas@gmail.com>
To: Sehrope Sarkuni <sehrope@jackdb.com>
Cc: Tomas Vondra <tomas.vondra@2ndquadrant.com>,
Simon Riggs <simon@2ndquadrant.com>, Bruce Momjian <bruce@momjian.us>, Magnus Hagander <magnus@hagander.net>, Andrew Dunstan <andrew.dunstan@2ndquadrant.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2020-01-23T17:30:36Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Provide a TLS init hook
- 896fcdb230e7 13.0 landed
On Thu, Nov 14, 2019 at 8:54 AM Sehrope Sarkuni <sehrope@jackdb.com> wrote: > Has the idea of using environment variables (rather than command line > args) for external commands been brought up before? I couldn't find > anything in the mailing list archives. Passing data through environment variables isn't secure. Try 'ps -E' on MacOS, or something like 'ps axe' on Linux. If we want to pass data securely to child processes, the way to do it is via stdin. Data sent back and forth via file descriptors can't easily be snooped by other users on the system. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company