Commit 95880842 authored by Bruce Momjian's avatar Bruce Momjian

* regression tests

* minor doc updates

Marko Kreen
parent c6f94644
...@@ -22,7 +22,7 @@ unsigned px_gen_salt(const char *salt_type, char *dst, int rounds); ...@@ -22,7 +22,7 @@ unsigned px_gen_salt(const char *salt_type, char *dst, int rounds);
Random Random
====== ======
int px_rand_get_bytes(uint8 *dst, int num) int px_get_random_bytes(uint8 *dst, int num)
Crypto "objects" Crypto "objects"
......
# #
# $Header: /cvsroot/pgsql/contrib/pgcrypto/Makefile,v 1.8 2001/09/29 03:11:58 momjian Exp $ # $Header: /cvsroot/pgsql/contrib/pgcrypto/Makefile,v 1.9 2001/09/30 22:18:29 momjian Exp $
# #
subdir = contrib/pgcrypto subdir = contrib/pgcrypto
...@@ -71,6 +71,9 @@ EXTRA_CLEAN := gen-rtab ...@@ -71,6 +71,9 @@ EXTRA_CLEAN := gen-rtab
PG_CPPFLAGS := $(CRYPTO_CFLAGS) -I$(srcdir) PG_CPPFLAGS := $(CRYPTO_CFLAGS) -I$(srcdir)
SHLIB_LINK := $(CRYPTO_LDFLAGS) SHLIB_LINK := $(CRYPTO_LDFLAGS)
REGRESS := init md5 sha1 hmac-md5 hmac-sha1 blowfish rijndael \
crypt-des crypt-md5 crypt-blowfish crypt-xdes
include $(top_srcdir)/contrib/contrib-global.mk include $(top_srcdir)/contrib/contrib-global.mk
rijndael.o: rijndael.tbl rijndael.o: rijndael.tbl
......
...@@ -21,6 +21,11 @@ After editing Makefile: ...@@ -21,6 +21,11 @@ After editing Makefile:
make make
make install make install
To run regression tests, install both PostgreSQL and pgcrypto
and then run
make installcheck
SQL FUNCTIONS SQL FUNCTIONS
============= =============
...@@ -181,7 +186,7 @@ OpenSSL (0.9.6): ...@@ -181,7 +186,7 @@ OpenSSL (0.9.6):
Url: http://www.openssl.org/ Url: http://www.openssl.org/
mhash (0.8.9) + mcrypt (2.4.11): mhash (0.8.9) + mcrypt (2.4.16):
Hashes: MD5, SHA1, CRC32, CRC32B, GOST, TIGER, RIPEMD160, Hashes: MD5, SHA1, CRC32, CRC32B, GOST, TIGER, RIPEMD160,
HAVAL(256,224,192,160,128) HAVAL(256,224,192,160,128)
Ciphers: DES, DES3, CAST-128(CAST5), CAST-256, xTEA, 3-way, Ciphers: DES, DES3, CAST-128(CAST5), CAST-256, xTEA, 3-way,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment