FROM mobilephone724
SSL in PG
Overview In application level, ”PostgreSQL“ has native supports for using SSL connections. This requires that OpenSSL is installed on both client and server systems and that support in PostgreSQL is enabled at build time. With SSL, we can: Encrypted data on Internet transmission Allow client to authorize the server(PostgreSQL), which can protect the client from connecting to the attacker’s server Allow server to authorize the client, which can stop the attacker from connecting to the database even if password leak. Just encrypt internet transmission build binary from source just configure with -with-openssl option. You may need to install ssl-dev tools first ...