[PHP] crypt(): How to make it use blowfish?

2002-08-14 Thread Jean-Christian Imbeault

I'd like to use the crypt() function and have it use Blowfish 
encryption. However it seems that my system doesn't support blowfish 
encryption since I get:

CRYPT_BLOWFISH = 0

My system is a linux RH7.2 box. How can I make blowfish encryption 
available to PHP's crypt?

Jc


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] crypt(): How to make it use blowfish?

2002-08-14 Thread Dan Hardiker


 My system is a linux RH7.2 box. How can I make blowfish encryption
 available to PHP's crypt?

Use mcrypt. See the manual.


-- 
Dan Hardiker [[EMAIL PROTECTED]]
ADAM Software  Systems Engineer
First Creative Ltd



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] crypt(): How to make it use blowfish?

2002-08-14 Thread Jean-Christian Imbeault

Dan Hardiker wrote:

 
 Use mcrypt. See the manual.


I don't want to use mcrypt :) It requires me install a separate library.
Or do you mean that the only to get crypt() to use Blowfish is to 
install mcrypt?

What does crypt() require, on a RH7.2 Linux machine, in order to use 
Blowfish?

Jc


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] crypt(): how to make it use blowfish?

2002-08-14 Thread Jean-Christian Imbeault

How can I make crypt() use blowfish encryption?

Also it seems that my system (RH7.2 Linux) doesn't support Blowfish 
according to CRYPT_BLOWFISH:

CRYPT_BLOWFISH = 0

How can I add blowfish support to my system if crypt() requires it?

Jc

PS I don't want to use mcrypt(). I just want to install whatever is 
needed by crypt() to use Blowfish.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php