pgsql: Some builds (depends on crypto engine support?) of OpenSSL 0.9.7x

From: neilc(at)svr1(dot)postgresql(dot)org (Neil Conway)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Some builds (depends on crypto engine support?) of OpenSSL 0.9.7x
Date: 2005-03-13 23:45:56
Message-ID: 20050313234556.63FDE56741@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Some builds (depends on crypto engine support?) of OpenSSL
0.9.7x have EVP_DigestFinal function which which clears all of
EVP_MD_CTX. This makes pgcrypto crash in functions which
re-use one digest context several times: hmac() and crypt()
with md5 algorithm.

Following patch fixes it by carring the digest info around
EVP_DigestFinal and re-initializing cipher.

Marko Kreen.

Tags:
----
REL7_3_STABLE

Modified Files:
--------------
pgsql/contrib/pgcrypto:
openssl.c (r1.10.4.1 -> r1.10.4.2)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pgcrypto/openssl.c.diff?r1=1.10.4.1&r2=1.10.4.2)

Browse pgsql-committers by date

  From Date Subject
Next Message Neil Conway 2005-03-13 23:46:27 pgsql: Some builds (depends on crypto engine support?) of OpenSSL 0.9.7x
Previous Message Neil Conway 2005-03-13 23:42:07 pgsql: Update contrib/pgcrypto in 7.3 and 7.2 branches to avoid problems