From 707e7bd938e8c263a4baac7b04810ae5a3acba42 Mon Sep 17 00:00:00 2001 From: Colin Viebrock Date: Sat, 13 Jan 2001 20:55:15 +0000 Subject: [PATCH] Support for perl-compatible blowfish encryption (in libmcrypt CVS and versions later than 2.4.8) --- ext/mcrypt/mcrypt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 9f45669005..859d1fd4cb 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -294,6 +294,7 @@ static PHP_MINIT_FUNCTION(mcrypt) MCRYPT_ENTRY2_2_4(ARCFOUR_IV, "arcfour-iv"); MCRYPT_ENTRY2_2_4(ARCFOUR, "arcfour"); MCRYPT_ENTRY2_2_4(BLOWFISH, "blowfish"); + MCRYPT_ENTRY2_2_4(BLOWFISH_COMPAT, "blowfish-compat"); MCRYPT_ENTRY2_2_4(CAST_128, "cast-128"); MCRYPT_ENTRY2_2_4(CAST_256, "cast-256"); MCRYPT_ENTRY2_2_4(CRYPT, "crypt"); -- 2.50.1