Am Donnerstag, 5. Januar 2006 12:40 schrieb Andreas Pflug:
> Ok, we'll use it ASAP. But how to detect if it's available or not? Some
> #define PQENCRYPT_AVAILABLE 1 would be helpful.
Just use
AC_CHECK_FUNCS(PQencryptPassword)
and you will get a definition like that.
---(
Peter Eisentraut wrote:
Am Donnerstag, 5. Januar 2006 12:40 schrieb Andreas Pflug:
Ok, we'll use it ASAP. But how to detect if it's available or not? Some
#define PQENCRYPT_AVAILABLE 1 would be helpful.
Just use
AC_CHECK_FUNCS(PQencryptPassword)
Um, no autoconf in our win32 environment...
Magnus Hagander wrote:
The officially sanctioned function for this is now
PQencryptPassword()
in libpq. Please consider using it when available.
Ok, we'll use it ASAP. But how to detect if it's available or
not? Some #define PQENCRYPT_AVAILABLE 1 would be helpful.
You're going to have
> > The officially sanctioned function for this is now
> PQencryptPassword()
> > in libpq. Please consider using it when available.
>
> Ok, we'll use it ASAP. But how to detect if it's available or
> not? Some #define PQENCRYPT_AVAILABLE 1 would be helpful.
You're going to have to detect this
Peter Eisentraut wrote:
The officially sanctioned function for this is now PQencryptPassword() in
libpq. Please consider using it when available.
Ok, we'll use it ASAP. But how to detect if it's available or not? Some
#define PQENCRYPT_AVAILABLE 1 would be helpful.
Regards,
Andreas
---
The officially sanctioned function for this is now PQencryptPassword() in
libpq. Please consider using it when available.
I wrote:
> Commands like CREATE USER foo PASSWORD 'bar' transmit the password in
> cleartext and possibly save the password in various client or server
> log files. I have j
Dave Page wrote:
-Original Message- From: [EMAIL PROTECTED]
on behalf of Peter Eisentraut Sent: Sun 12/18/2005 2:25 AM To:
[email protected] Subject: [pgadmin-hackers] Client-side
password encryption
Commands like CREATE USER foo PASSWORD 'bar' transmit the p
-Original Message-
From: [EMAIL PROTECTED] on behalf of Peter Eisentraut
Sent: Sun 12/18/2005 2:25 AM
To: [email protected]
Subject: [pgadmin-hackers] Client-side password encryption
> Commands like CREATE USER foo PASSWORD 'bar' transmit the password in
&g
Commands like CREATE USER foo PASSWORD 'bar' transmit the password in
cleartext and possibly save the password in various client or server
log files. I have just fixed this for psql and createuser to encrypt
the password on the client side. A quick check of the pgadmin3 source
code shows that