From 8f5649e479e2ec2a5ac3e9beab00bf9704224faa Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 4 Mar 2016 15:29:44 -0600 Subject: [PATCH] Fix a typo in the first statement --- postgres/salt-and-hash-a-password-with-pgcrypto.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/salt-and-hash-a-password-with-pgcrypto.md b/postgres/salt-and-hash-a-password-with-pgcrypto.md index c3e6291..0757214 100644 --- a/postgres/salt-and-hash-a-password-with-pgcrypto.md +++ b/postgres/salt-and-hash-a-password-with-pgcrypto.md @@ -9,7 +9,7 @@ user password and later compare it to plain-text passwords for authentication purposes. ```sql -create extensions pgcrypto; +create extension pgcrypto; select crypt('pa$$w0rd', gen_salt('bf')); crypt