diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-05-28 06:33:30 -0400 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-05-28 06:33:30 -0400 |
commit | af94ea7406f332567331a9b2525fae4b57c96061 (patch) | |
tree | 3a92d531b3c60713fbbb4c87c9069f7a9c5d3296 | |
parent | 00ef6e3b28a8220f2dba881dbf56e3ba62f851bd (diff) | |
download | postgresql-af94ea7406f332567331a9b2525fae4b57c96061.tar.gz postgresql-af94ea7406f332567331a9b2525fae4b57c96061.zip |
Fix typos in SQL scripts of pgcrypto
Author: Gurjeet Singh
Discussion: https://postgr.es/m/CABwTF4U_5kEnH93PXZEuEsZHuoSSuBEOqC6pian8vDfLZSQJNA@mail.gmail.com
-rw-r--r-- | contrib/pgcrypto/expected/hmac-sha1.out | 2 | ||||
-rw-r--r-- | contrib/pgcrypto/expected/pgp-decrypt.out | 2 | ||||
-rw-r--r-- | contrib/pgcrypto/sql/hmac-sha1.sql | 2 | ||||
-rw-r--r-- | contrib/pgcrypto/sql/pgp-decrypt.sql | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/pgcrypto/expected/hmac-sha1.out b/contrib/pgcrypto/expected/hmac-sha1.out index d5f1cf25972..de605b804eb 100644 --- a/contrib/pgcrypto/expected/hmac-sha1.out +++ b/contrib/pgcrypto/expected/hmac-sha1.out @@ -1,5 +1,5 @@ -- --- HMAC-MD5 +-- HMAC-SHA1 -- SELECT encode(hmac( 'Hi There', diff --git a/contrib/pgcrypto/expected/pgp-decrypt.out b/contrib/pgcrypto/expected/pgp-decrypt.out index 2dabfaf7b0e..e8250b090ab 100644 --- a/contrib/pgcrypto/expected/pgp-decrypt.out +++ b/contrib/pgcrypto/expected/pgp-decrypt.out @@ -1,5 +1,5 @@ -- --- pgp_descrypt tests +-- pgp decrypt tests -- -- Checking ciphers select pgp_sym_decrypt(dearmor(' diff --git a/contrib/pgcrypto/sql/hmac-sha1.sql b/contrib/pgcrypto/sql/hmac-sha1.sql index 6f741934bfd..3bc965578c5 100644 --- a/contrib/pgcrypto/sql/hmac-sha1.sql +++ b/contrib/pgcrypto/sql/hmac-sha1.sql @@ -1,5 +1,5 @@ -- --- HMAC-MD5 +-- HMAC-SHA1 -- SELECT encode(hmac( diff --git a/contrib/pgcrypto/sql/pgp-decrypt.sql b/contrib/pgcrypto/sql/pgp-decrypt.sql index f46a18f8cfd..557948d7c75 100644 --- a/contrib/pgcrypto/sql/pgp-decrypt.sql +++ b/contrib/pgcrypto/sql/pgp-decrypt.sql @@ -1,5 +1,5 @@ -- --- pgp_descrypt tests +-- pgp decrypt tests -- -- Checking ciphers |