summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/pgcrypto.h
diff options
context:
space:
mode:
authorTom Lane2006-09-05 21:26:48 +0000
committerTom Lane2006-09-05 21:26:48 +0000
commit7d4838dca87aa31487426eb9093d65058a535300 (patch)
treef5a91ca29423a57e9fa99d9010106a974f6b8655 /contrib/pgcrypto/pgcrypto.h
parent7bae5a289c8fbe33aceb56f04e273eee2c1e7c39 (diff)
Remove pgcrypto functions that were deprecated and slated for removal.
Marko Kreen
Diffstat (limited to 'contrib/pgcrypto/pgcrypto.h')
-rw-r--r--contrib/pgcrypto/pgcrypto.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/pgcrypto/pgcrypto.h b/contrib/pgcrypto/pgcrypto.h
index 3211fc4dede..b011b06062e 100644
--- a/contrib/pgcrypto/pgcrypto.h
+++ b/contrib/pgcrypto/pgcrypto.h
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.h,v 1.10 2006/07/13 04:15:25 neilc Exp $
+ * $PostgreSQL: pgsql/contrib/pgcrypto/pgcrypto.h,v 1.11 2006/09/05 21:26:48 tgl Exp $
*/
#ifndef _PG_CRYPTO_H
@@ -36,9 +36,7 @@
/* exported functions */
Datum pg_digest(PG_FUNCTION_ARGS);
-Datum pg_digest_exists(PG_FUNCTION_ARGS);
Datum pg_hmac(PG_FUNCTION_ARGS);
-Datum pg_hmac_exists(PG_FUNCTION_ARGS);
Datum pg_gen_salt(PG_FUNCTION_ARGS);
Datum pg_gen_salt_rounds(PG_FUNCTION_ARGS);
Datum pg_crypt(PG_FUNCTION_ARGS);
@@ -46,7 +44,6 @@ Datum pg_encrypt(PG_FUNCTION_ARGS);
Datum pg_decrypt(PG_FUNCTION_ARGS);
Datum pg_encrypt_iv(PG_FUNCTION_ARGS);
Datum pg_decrypt_iv(PG_FUNCTION_ARGS);
-Datum pg_cipher_exists(PG_FUNCTION_ARGS);
Datum pg_random_bytes(PG_FUNCTION_ARGS);
#endif