2005-07-10 21:46:29 +08:00
|
|
|
--
|
|
|
|
-- PGP encrypt
|
|
|
|
--
|
2009-08-05 02:49:50 +08:00
|
|
|
-- ensure consistent test output regardless of the default bytea format
|
|
|
|
SET bytea_output TO escape;
|
2005-07-10 21:46:29 +08:00
|
|
|
select pgp_sym_decrypt(pgp_sym_encrypt('Secret.', 'key'), 'key');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- check whether the defaults are ok
|
|
|
|
select pgp_sym_decrypt(pgp_sym_encrypt('Secret.', 'key'),
|
|
|
|
'key', 'expect-cipher-algo=aes128,
|
|
|
|
expect-disable-mdc=0,
|
|
|
|
expect-sess-key=0,
|
|
|
|
expect-s2k-mode=3,
|
|
|
|
expect-s2k-digest-algo=sha1,
|
|
|
|
expect-compress-algo=0
|
|
|
|
');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- maybe the expect- stuff simply does not work
|
|
|
|
select pgp_sym_decrypt(pgp_sym_encrypt('Secret.', 'key'),
|
|
|
|
'key', 'expect-cipher-algo=bf,
|
|
|
|
expect-disable-mdc=1,
|
|
|
|
expect-sess-key=1,
|
|
|
|
expect-s2k-mode=0,
|
|
|
|
expect-s2k-digest-algo=md5,
|
|
|
|
expect-compress-algo=1
|
|
|
|
');
|
|
|
|
NOTICE: pgp_decrypt: unexpected cipher_algo: expected 4 got 7
|
|
|
|
NOTICE: pgp_decrypt: unexpected s2k_mode: expected 0 got 3
|
|
|
|
NOTICE: pgp_decrypt: unexpected s2k_digest_algo: expected 1 got 2
|
|
|
|
NOTICE: pgp_decrypt: unexpected use_sess_key: expected 1 got 0
|
|
|
|
NOTICE: pgp_decrypt: unexpected disable_mdc: expected 1 got 0
|
|
|
|
NOTICE: pgp_decrypt: unexpected compress_algo: expected 1 got 0
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- bytea as text
|
|
|
|
select pgp_sym_decrypt(pgp_sym_encrypt_bytea('Binary', 'baz'), 'baz');
|
The large one adds support for RSA keys and reorganizes
the pubkey functions a bit. The actual RSA-specific code
there is tiny, most of the patch consists of reorg of the
pubkey code, as lots of it was written as elgamal-only.
---------------------------------------------------------------------------
The SHLIB section was copy-pasted from somewhere and contains
several unnecessary libs. This cleans it up a bit.
-lcrypt
we don't use system crypt()
-lssl, -lssleay32
no SSL here
-lz in win32 section
already added on previous line
-ldes
The chance anybody has it is pretty low.
And the chance pgcrypto works with it is even lower.
Also trim the win32 section.
---------------------------------------------------------------------------
It is already disabled in Makefile, remove code too.
---------------------------------------------------------------------------
I was bit hasty making the random exponent 'k' a prime. Further researh
shows that Elgamal encryption has no specific needs in respect to k,
any random number is fine.
It is bit different for signing, there it needs to be 'relatively prime'
to p - 1, that means GCD(k, p-1) == 1, which is also a lot lighter than
full primality. As we don't do signing, this can be ignored.
This brings major speedup to Elgamal encryption.
---------------------------------------------------------------------------
o pgp_mpi_free: Accept NULLs
o pgp_mpi_cksum: result should be 16bit
o Remove function name from error messages - to be similar to other
SQL functions, and it does not match anyway the called function
o remove couple junk lines
---------------------------------------------------------------------------
o Support for RSA encryption
o Big reorg to better separate generic and algorithm-specific code.
o Regression tests for RSA.
---------------------------------------------------------------------------
o Tom stuck a CVS id into file. I doubt the usefulness of it,
but if it needs to be in the file then rather at the end.
Also tag it as comment for asciidoc.
o Mention bytea vs. text difference
o Couple clarifications
---------------------------------------------------------------------------
There is a choice whether to update it with pgp functions or
remove it. I decided to remove it, updating is pointless.
I've tried to keep the core of pgcrypto relatively independent
from main PostgreSQL, to make it easy to use externally if needed,
and that is good. Eg. that made development of PGP functions much
nicer.
But I have no plans to release it as generic library, so keeping such
doc
up-to-date is waste of time. If anyone is interested in using it in
other products, he can probably bother to read the source too.
Commented source is another thing - I'll try to make another pass
over code to see if there is anything non-obvious that would need
more comments.
---------------------------------------------------------------------------
Marko Kreen
2005-08-13 10:06:21 +08:00
|
|
|
ERROR: Not text data
|
2005-07-10 21:46:29 +08:00
|
|
|
-- text as bytea
|
|
|
|
select pgp_sym_decrypt_bytea(pgp_sym_encrypt('Text', 'baz'), 'baz');
|
|
|
|
pgp_sym_decrypt_bytea
|
|
|
|
-----------------------
|
|
|
|
Text
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- algorithm change
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'cipher-algo=bf'),
|
|
|
|
'key', 'expect-cipher-algo=bf');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'cipher-algo=aes'),
|
|
|
|
'key', 'expect-cipher-algo=aes128');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'cipher-algo=aes192'),
|
|
|
|
'key', 'expect-cipher-algo=aes192');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- s2k change
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-mode=0'),
|
|
|
|
'key', 'expect-s2k-mode=0');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-mode=1'),
|
|
|
|
'key', 'expect-s2k-mode=1');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-mode=3'),
|
|
|
|
'key', 'expect-s2k-mode=3');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- s2k digest change
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-digest-algo=md5'),
|
|
|
|
'key', 'expect-s2k-digest-algo=md5');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 's2k-digest-algo=sha1'),
|
|
|
|
'key', 'expect-s2k-digest-algo=sha1');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- sess key
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'sess-key=0'),
|
|
|
|
'key', 'expect-sess-key=0');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'sess-key=1'),
|
|
|
|
'key', 'expect-sess-key=1');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'sess-key=1, cipher-algo=bf'),
|
|
|
|
'key', 'expect-sess-key=1, expect-cipher-algo=bf');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'sess-key=1, cipher-algo=aes192'),
|
|
|
|
'key', 'expect-sess-key=1, expect-cipher-algo=aes192');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'sess-key=1, cipher-algo=aes256'),
|
|
|
|
'key', 'expect-sess-key=1, expect-cipher-algo=aes256');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- no mdc
|
|
|
|
select pgp_sym_decrypt(
|
|
|
|
pgp_sym_encrypt('Secret.', 'key', 'disable-mdc=1'),
|
|
|
|
'key', 'expect-disable-mdc=1');
|
|
|
|
pgp_sym_decrypt
|
|
|
|
-----------------
|
|
|
|
Secret.
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- crlf
|
|
|
|
select encode(pgp_sym_decrypt_bytea(
|
2006-03-08 11:51:52 +08:00
|
|
|
pgp_sym_encrypt(E'1\n2\n3\r\n', 'key', 'convert-crlf=1'),
|
2005-07-10 21:46:29 +08:00
|
|
|
'key'), 'hex');
|
|
|
|
encode
|
|
|
|
----------------------
|
|
|
|
310d0a320d0a330d0d0a
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- conversion should be lossless
|
|
|
|
select encode(digest(pgp_sym_decrypt(
|
2006-03-08 11:51:52 +08:00
|
|
|
pgp_sym_encrypt(E'\r\n0\n1\r\r\n\n2\r', 'key', 'convert-crlf=1'),
|
2005-07-10 21:46:29 +08:00
|
|
|
'key', 'convert-crlf=1'), 'sha1'), 'hex') as result,
|
2006-03-08 11:51:52 +08:00
|
|
|
encode(digest(E'\r\n0\n1\r\r\n\n2\r', 'sha1'), 'hex') as expect;
|
2005-07-10 21:46:29 +08:00
|
|
|
result | expect
|
|
|
|
------------------------------------------+------------------------------------------
|
|
|
|
47bde5d88d6ef8770572b9cbb4278b402aa69966 | 47bde5d88d6ef8770572b9cbb4278b402aa69966
|
|
|
|
(1 row)
|
|
|
|
|