[PHP] mcrypt and PHP to encrypt values to be passed to differend server

2003-12-28 Thread Mark Wouters
Hello! I'm trying to use mcrypt to encrypt some values (login and password) I have to pass from one website to another. I thook this code from the php.net website as an example: ?php /* Open the cipher */ $td = mcrypt_module_open ('rijndael-256', '', 'ofb', ''); /* Create the IV and

Re: [PHP] mcrypt and PHP to encrypt values to be passed to differend server

2003-12-28 Thread Tom Rogers
Hi, Monday, December 29, 2003, 9:30:11 AM, you wrote: MW Hello! MW I'm trying to use mcrypt to encrypt some values (login and password) I have MW to pass from one website to another. You will need to pass the $iv which kinda defeats the object of it, or use a null one. Here is a class I use