[PHP] MCrypt not decrypting simple text

2008-03-20 Thread Dan
I'm using MCrypt and I have two very simple functions. All I'm doing is giving the function some text and a password, it encrypts the text and saves it as a text file on the server. Then I at some later time run another php file which decrypts using the decrypt function given the text and the

[PHP] MCrypt resource limits?

2006-08-23 Thread Eric Butera
Hi list, Yesterday I noticed one of the sites I had created was running really slow. Yet all the other sites on our webserver were running great. I had our network admin look at the cpu, ram usage, etc of the webserver and everything looked fine. Finally I just recommended we stick Xdebug on th

Re: [PHP] mcrypt

2006-01-18 Thread Richard Lynch
On Tue, January 17, 2006 7:05 pm, [EMAIL PROTECTED] wrote: > Since I'm running php under safe mode and the gpglib extension is not > installed in php at my isp gpg seems to be unavalible for me. Are > there anything else I can use with public/private keys that is as > safe/solid/hard to crack as gp

[PHP] mcrypt

2006-01-18 Thread Duffy, Scott E
Is it possible to set the key length for mcrypt with the cipher Blowfish? Specifically to lets say 128 bits? mcrypt_get_key_size returns int but is it bytes bits? Maybe I could do with openssl? Ideas and thoughts very welcome. Thanks, Scott

[PHP] mcrypt

2006-01-17 Thread emil
Hello, Since I'm running php under safe mode and the gpglib extension is not installed in php at my isp gpg seems to be unavalible for me. Are there anything else I can use with public/private keys that is as safe/solid/hard to crack as gpg? The mcrypt extension is installed if that helps, or

Re: [PHP] mcrypt

2006-01-13 Thread Jason Gerfen
Duffy, Scott E wrote: Trying to encrypt then decrypt text with php using mcrypt. The encrypt seems to work but when I decrypt it with a different script I get most of it but some garbage. Using blowfish. So to test. Encrypt.php $iv_size = mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_ECB);

[PHP] mcrypt

2006-01-13 Thread Duffy, Scott E
Trying to encrypt then decrypt text with php using mcrypt. The encrypt seems to work but when I decrypt it with a different script I get most of it but some garbage. Using blowfish. So to test. Encrypt.php $iv_size = mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_ECB); $iv = mcrypt_create_

Re: [PHP] Mcrypt 3DES encrypt/decrypt Help

2005-11-07 Thread Andrew Brampton
his helps Andrew - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Monday, November 07, 2005 4:56 AM Subject: [PHP] Mcrypt 3DES encrypt/decrypt Help Hi all: I wan't to use php_mcrpyt to encrypt data,but have a problem in it ! Hint: Warning: mcrypt_encrypt(): Size of ke

[PHP] Mcrypt 3DES encrypt/decrypt Help

2005-11-06 Thread yangguang1981
Hi all: I wan't to use php_mcrpyt to encrypt data,but have a problem in it ! Hint: Warning: mcrypt_encrypt(): Size of key is too large for this algorithm Algorithm : 3DES Key: 48bit -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mcrypt problem under Windows

2005-08-18 Thread Konrad Billewicz
Hello, I have a problem with mcrypt library. I'm using Apache 2.0.54 under Windows and PHP 4.3.3. I tried to run an example from PHP site [1] but it is not working - the decrypting is doing nothing. I searched the web and found only that I need to download newer version of libmcrypt.dll (but I

Re: [PHP] mcrypt public and private key

2005-02-03 Thread Marek Kilimajer
Daniel Bowett wrote: Hi, I have been reading up on the mcrypt function. Is it possible to use it with a public and private key pair or just with a single key? Cheers. mcrypt supports only single key -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

[PHP] mcrypt public and private key

2005-02-03 Thread Daniel Bowett
Hi, I have been reading up on the mcrypt function. Is it possible to use it with a public and private key pair or just with a single key? Cheers. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mcrypt: generic_init failed

2004-11-23 Thread Adelaide Yip
Hi, I forgot to mention that the website is running on RedHat kernel-2.4.20. -- Adelaide -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mcrypt: generic_init failed

2004-11-23 Thread Adelaide Yip
Hi, Our website uses mcrypt functions to encrypt and decrypt passwords stored in the PostgreSQL database. The website encrypted/decrypted passwords flawlessly under PHP 4.0.4, however, we recently upgraded the server that the website is stored on to PHP 4.2.3. Since then, each time a password is

Re: [PHP] Re: PHP - MCRYPT - CBC - IDEA

2004-11-05 Thread Ben Ramsey
Frantzcy Paisible wrote: But I've been thru this one, in and out, and it's exactly one of those that say "MCRYPT_IDEA (non-free)" but not more. Have you used mcrypt ? with cbc and IDEA ? Sorry about that. I must have read your message wrong. I have used mcrypt, but not with IDEA or cbc. Are yo

Re: [PHP] PHP - MCRYPT - CBC - IDEA

2004-11-05 Thread Greg Donald
On Fri, 5 Nov 2004 13:10:43 -0500, Frantzcy Paisible <[EMAIL PROTECTED]> wrote: > I need to recreate this perl script in php : I'm not sure if you realize it, but you can call the Perl script from PHP using system(). -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destin

Re: [PHP] Re: PHP - MCRYPT - CBC - IDEA

2004-11-05 Thread Frantzcy Paisible
Thanx Ben, But I've been thru this one, in and out, and it's exactly one of those that say "MCRYPT_IDEA (non-free)" but not more. Have you used mcrypt ? with cbc and IDEA ? Frantzcy On Fri, 05 Nov 2004 13:30:04 -0500,Ben Ramsey <[EMAIL PROTECTED]> wrote: > Frantzcy Paisible wrote: > >

[PHP] Re: PHP - MCRYPT - CBC - IDEA

2004-11-05 Thread Ben Ramsey
Frantzcy Paisible wrote: I'm looking for some information, rearging mcrypt. Now, I've been through the normal channels, I've been going in in cercles. even a simple "Look this way" would help. Look this way: :-) -- Ben Ramsey Zend Certified Engineer http://benramsey.

[PHP] PHP - MCRYPT - CBC - IDEA

2004-11-05 Thread Frantzcy Paisible
Hi all, I'm looking for some information, rearging mcrypt. Now, I've been through the normal channels, I've been going in in cercles. I need to recreate this perl script in php : sub cryptage { use Crypt::CBC; $key = "SuperFreak"; my $action = shift; my $string = shift; my $c

Re: [PHP] mcrypt install question

2004-10-07 Thread Greg Donald
On Thu, 7 Oct 2004 09:10:22 -0700, Ed Lazor <[EMAIL PROTECTED]> wrote: > Did you install it and PHP automatically recognized things or did you have > to enable something in php.ini and restart? I checked the php.ini file on > the server and there's nothing mycrypt or crypt. It appears to 'just wo

RE: [PHP] mcrypt install question

2004-10-07 Thread Ed Lazor
Did you install it and PHP automatically recognized things or did you have to enable something in php.ini and restart? I checked the php.ini file on the server and there's nothing mycrypt or crypt. > -Original Message- > On Thu, 7 Oct 2004 08:37:19 -0700, Ed Lazor <[EMAIL PROTECTED]> wr

Re: [PHP] mcrypt install question

2004-10-07 Thread Greg Donald
On Thu, 7 Oct 2004 08:37:19 -0700, Ed Lazor <[EMAIL PROTECTED]> wrote: > PHP is installed from rpm's. Is it possible to install mcrypt / libmcrypt > from rpm and enable it in PHP without having to recompile? I was able to gain this functionality with Suse 9.1. I don't know about other distros ho

[PHP] mcrypt install question

2004-10-07 Thread Ed Lazor
PHP is installed from rpm's. Is it possible to install mcrypt / libmcrypt from rpm and enable it in PHP without having to recompile? Thanks, Ed

[PHP] Encryption in PHP - mcrypt and alternatives

2004-07-05 Thread Mike Morton
I have a need for an encryption program that can encrypt/decrypt data. I previously had a programmer build me a C program that compiled and runs on the command line, which I would then call via PHP. We are experiencing with this however, a 5-7% fail rate on the decryption - not acceptable for the

[PHP] mcrypt & pdflib configuration

2004-05-12 Thread William Holroyd
I've already posted this question in comp.lang.php but no one seemed to have an answer to it. So I've got PHP to recognize mcrypt and pdflib in the phpinfo() output, but trying to use any of the functions fail with "...undefined function called..". There aren't any configurable files with either d

[PHP] MCRYPT Help

2004-03-02 Thread "Miguel J. Jiménez"
Hi, I have the following script that encode data using 3DES, but I cannot make a script to DECODE that data because all the tries return me thwe wrong string, can anybody tell me the right script to decode the data? Copied from PHP Manual: $td = mcrypt_module_open('tripledes', '', 'ecb', ''

Re: [PHP] mcrypt don't work.

2004-02-08 Thread Adam Bregenzer
On Sun, 2004-02-08 at 05:18, [EMAIL PROTECTED] wrote: > Hi all, > I have problem with mcrypt function. > There is always an error that I don't know how to correct this. > This is my code: > > $string = "Text string"; > $key= "My key"; > $encrypted = mcrypt_cfb(MCRYPT_RIJNDAEL-256, $key, $string, M

Re: [PHP] mcrypt don't work.

2004-02-08 Thread "Miguel J. Jiménez"
Mmm this same problem happen to me also... I use Apache 1.3.29 for Win32 and PHP v4.3.4 ... I do not know why but mcrypt module failed to initialize [EMAIL PROTECTED] wrote: Hi all, I have problem with mcrypt function. There is always an error that I don't know how to correct this. This is

[PHP] mcrypt don't work.

2004-02-08 Thread francesco
Hi all, I have problem with mcrypt function. There is always an error that I don't know how to correct this. This is my code: $string = "Text string"; $key= "My key"; $encrypted = mcrypt_cfb(MCRYPT_RIJNDAEL-256, $key, $string, MCRYPT_ENCRYPT); echo"stringa cifrata= $encrypted"; $key = "My key";

Re: [PHP] mcrypt don't work.

2004-02-03 Thread Jas
Have you tried to check if PHP has been compiled with mcrypt? try this on a page Look for mcrypt directives, if not there you need to download it and compile it like so. http://mcrypt.sourceforge.net Get both the libmcrypt and mcrypt compressed archives from command prompt on linux... cd /path/

Re: [PHP] mcrypt don't work.

2004-02-03 Thread Jochem Maas
Francesco, mcrypt_ functions rely on a PHP extension, your syntax look ok, PHP is telling you that it could not load the required extension (module). the following page from the PHP manual tells more about what you need in order to use mcrypt_ functions: http://nl2.php.net/manual/en/ref.mcrypt

[PHP] mcrypt don't work.

2004-02-03 Thread francesco
Hi all, i've problem with mcrypt_cfb function. This is the code: $string = "A simple text string"; $key = "My key"; line 55: $encrypted = mcrypt_cfb(MCRYPT_IDEA, $key, $string, MCRYPT_ENCRYPT); $key = "My key"; line 59: $string = mcrypt_cfb(MCRYPT_IDEA, $key, $encrypted, MCRYPT_DECRYPT); I've

Re[2]: [PHP] mcrypt win32 install problem ?

2004-01-21 Thread Tom Rogers
Hi, Thursday, January 22, 2004, 2:16:22 AM, you wrote: scb> Hi Tom, Vincent, list, scb> Tom, your response caused some confusion here. I have mcrypt running on win32 scb> (Win98, Apache 1.3.29 & 2.0.48, PHP 4.3.4 & PHP 5beta3) and am in fact using scb> mcrypt_generic_deinit() succesfully to encr

Re: [PHP] mcrypt win32 install problem ?

2004-01-21 Thread speedfreak
Tom Rogers wrote: > Hi, > > Wednesday, January 21, 2004, 9:09:40 PM, you wrote: > VD> Hi, > > VD> I want to use the mcrypt module and I followed the > VD> instructions to install the dll for Win32 users : > VD> I copied the libmcrypt.dll file under c:\winnt\system32 > VD> I uncommented the "exten

Re: [PHP] mcrypt win32 install problem ?

2004-01-21 Thread Tom Rogers
Hi, Wednesday, January 21, 2004, 9:09:40 PM, you wrote: VD> Hi, VD> I want to use the mcrypt module and I followed the VD> instructions to install the dll for Win32 users : VD> I copied the libmcrypt.dll file under c:\winnt\system32 VD> I uncommented the "extension=php_mcrypt.dll" in the php.in

[PHP] mcrypt win32 install problem ?

2004-01-21 Thread Vincent DUPONT
Hi, I want to use the mcrypt module and I followed the instructions to install the dll for Win32 users : I copied the libmcrypt.dll file under c:\winnt\system32 I uncommented the "extension=php_mcrypt.dll" in the php.ini I restarted the computer I tried many examples available in the Net. The

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

[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: I put this in the page starting from: &password=" target="_blank">link In the destination page (destinationpage.p

Re: [PHP] mcrypt libraries?

2003-11-19 Thread Jas
Evan Nemerson wrote: On Tuesday 18 November 2003 01:13 pm, Jas wrote: Curt Zirzow wrote: * Thus wrote Jas ([EMAIL PROTECTED]): I am not sure if I should post my question here but I will anyways. Ok, I have compiled the mcrypt libraries on a Redhat 9 box running apache 2 with php4. And I need t

Re: [PHP] mcrypt libraries?

2003-11-18 Thread Evan Nemerson
On Tuesday 18 November 2003 01:13 pm, Jas wrote: > Curt Zirzow wrote: > > * Thus wrote Jas ([EMAIL PROTECTED]): > >>I am not sure if I should post my question here but I will anyways. > >> > >>Ok, I have compiled the mcrypt libraries on a Redhat 9 box running > >>apache 2 with php4. And I need to

Re: [PHP] mcrypt libraries?

2003-11-18 Thread Jas
Curt Zirzow wrote: * Thus wrote Jas ([EMAIL PROTECTED]): I am not sure if I should post my question here but I will anyways. Ok, I have compiled the mcrypt libraries on a Redhat 9 box running apache 2 with php4. And I need to know the next step(s) in getting php to use the libmcrypt libraries.

Re: [PHP] mcrypt libraries?

2003-11-18 Thread Curt Zirzow
* Thus wrote Jas ([EMAIL PROTECTED]): > I am not sure if I should post my question here but I will anyways. > > Ok, I have compiled the mcrypt libraries on a Redhat 9 box running > apache 2 with php4. And I need to know the next step(s) in getting php > to use the libmcrypt libraries. If anyon

[PHP] mcrypt libraries?

2003-11-17 Thread Jas
I am not sure if I should post my question here but I will anyways. Ok, I have compiled the mcrypt libraries on a Redhat 9 box running apache 2 with php4. And I need to know the next step(s) in getting php to use the libmcrypt libraries. If anyone has set this up in the past or has some point

[PHP] mcrypt Blowfish encryption and Chilcat

2003-08-08 Thread Stephen Holly
Hi all. I was wondering anyone had heard any issues regarding mcrypt Blowfish encryption and Chilcat?? I presently have a system with a server implemented in php using mcrypt-2.4.x and clients who interact with it sending and receiving blowfish encrypted data. I am unable to touch the clients but

Re: [PHP] mcrypt mhash

2003-07-30 Thread Evan Nemerson
http://mcrypt.hellug.gr/ http://mhash.sf.net/ On Wednesday 30 July 2003 08:11 pm, AECT Listas wrote: > Hi, > > What is utility of mcrypt and mhash? > > Thanks, > > _ > Charla con tus amigos en línea mediante MSN Messenger: > http://m

[PHP] mcrypt mhash

2003-07-30 Thread AECT Listas
Hi, What is utility of mcrypt and mhash? Thanks, _ Charla con tus amigos en línea mediante MSN Messenger: http://messenger.yupimsn.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/un

[PHP] PHP / mcrypt compile

2003-07-19 Thread Tom Ray [Lists]
Ok, I've never done this before so I want to double check before I do it. I'm running RH 7.3 and PHP was installed as a RPM. Now I've just installed libmcrypt. My question is when I go to recompile PHP can I just run the PHP configure file as "configure --with-mcrypt[=DIR] --disable-posix-threa

RE: [PHP] mcrypt warning

2003-07-10 Thread Dan Joseph
Hi, > I use this to set iv to null so I don't need to worry about it :) > > $iv = pack("a".mcrypt_enc_get_iv_size($td),$iv); Ahh ok, I'll give that a try and let you know how it comes out. Thanks! -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] mcrypt warning

2003-07-10 Thread Tom Rogers
Hi, Thursday, July 10, 2003, 12:41:28 AM, you wrote: DJ> Hi All, DJ> I have the following function: DJ> function encrypt ($x) { DJ> $ini = parse_ini_file ($GLOBALS['INI_PATH']); DJ> $td = mcrypt_module_open ('tripledes', '', 'e

[PHP] mcrypt warning

2003-07-09 Thread Dan Joseph
Hi All, I have the following function: function encrypt ($x) { $ini = parse_ini_file ($GLOBALS['INI_PATH']); $td = mcrypt_module_open ('tripledes', '', 'ecb', ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size

RE: [PHP] mcrypt installation

2003-06-04 Thread Daniel Rychlik
m Ray [Lists] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 3:41 PM To: PHP List Subject: [PHP] mcrypt installation I'm just a little curious, I've never really don't this before, but is installing mcrypt usually a very hard thing to do, or will it be pretty simple for a dol

[PHP] mcrypt installation

2003-06-04 Thread Tom Ray [Lists]
I'm just a little curious, I've never really don't this before, but is installing mcrypt usually a very hard thing to do, or will it be pretty simple for a dolt like me? :) Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mcrypt functions

2003-06-04 Thread Daniel Rychlik
Hello, I have been playing with the mycrypt function. Im having a bit of trouble understanding why it is important to use a vector IV. I was wandering if there is a reasonably powerful encryption algorithm. That uses a key only instead of getting the block size and using a IV. I basically w

Re: [PHP] mcrypt as shared module

2003-02-26 Thread Jason Sheets
Hello Vladimir, you can run phpize in the mcrypt extension directory in your PHP source code, then copy the .so file to your PHP extension dir and either add an extension line to your php.ini file or use dl to load the extension at run time. Generally I just compile it in at PHP configure time as

[PHP] mcrypt as shared module

2003-02-26 Thread Vladimir Fedorkov
How can I attach mcrypt to PHP (FreeBSD) without recompile whole PHP ? How can I compile mcrypt as PHP shared module ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mcrypt dll's for php 4.3.x on windows

2003-02-23 Thread Daniel Guerrier
Hello folks, I found a working version of the php_mcrypt.dll and libmcrypt.dll for php 4.3.x. It may working on earlier versions, but I don't know for sure. You can download it from: http://home.earthlink.net/~dguerrier/data/mcrypt.zip __ Do you Y

[PHP] mcrypt not fully decrypting?

2003-02-21 Thread Tyler Longren
Hi, I'm going to start encrypting credit cards with the mcrypt functions. I encrypted the credit cards like so: $key = 'test'; $cc = "1234567890123456"; $td = mcrypt_module_open ('tripledes', '', 'ecb', ''); $key = substr ($key, 0, mcrypt_enc_get_key_size ($td)); $iv_size = mcrypt_enc_get

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Jean-Christian Imbeault
Tom Rogers wrote: Looks that way :) I also have that in /usr/src and in php as --with-mhash=/usr/src/mhash-0.8.17 Still no go. Did you compile into php 4.3.0? I finally got libmcrypt, mhash and mcrypt to make and install, but can't get PHP to work with --with-mcrypt OR --with-mcrypt=/usr/loc

Re[2]: [PHP] mcrypt installation problems

2003-02-05 Thread Tom Rogers
Hi, Thursday, February 6, 2003, 12:30:01 AM, you wrote: JCI> Tom Rogers wrote: >> >> I did it this way >> untar libmcrypt and mcrypt into /usr/src >> then in libmcrypt >> ./configure --prefix=/usr (could be /usr/local if you want >> make >> make install >> ldconfig >> cd ../mcrypt-2.6.3 JCI> Up

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Jean-Christian Imbeault
Jason Sheets wrote: You need only libmcrypt, mcrypt is a command line program that is intended to replace the Unix crypt program. To build the mcrypt binary you need mhash and libmcrypt, for PHP unless you want mhash you need only libmcrypt. Ok, so to build mcrypt support into PHP I only need

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Jason Sheets
Can anyone point to information on how to install mcrypt support for > PHP. I tried the PHP mcrypt pages but they are quite lacking in details. > > I downloaded libmcrypt and got that installed fine. > > I also downloaded mcrypt (do I really need it?) but that wouldn't > co

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Jean-Christian Imbeault
Tom Rogers wrote: I did it this way untar libmcrypt and mcrypt into /usr/src then in libmcrypt ./configure --prefix=/usr (could be /usr/local if you want make make install ldconfig cd ../mcrypt-2.6.3 Up to here fine. ./configure --prefix=/usr configure: error: "You need at least libmhash 0.

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Tom Rogers
Hi, Thursday, February 6, 2003, 12:07:49 AM, you wrote: JCI> Can anyone point to information on how to install mcrypt support for JCI> PHP. I tried the PHP mcrypt pages but they are quite lacking in details. JCI> I downloaded libmcrypt and got that installed fine. JCI> I also downl

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Jean-Christian Imbeault
Adam Voigt wrote: Download MCRYPT SRC. tar -zxf mcrypt.tar.gz cd mcrypt ./configure --prefix=/usr/local/mcrypt From the commands you give you imply that libmcrypt is not needed. Are you sure? The configure command you give does not work. Here's the complete error: [root@host110 mcrypt-2.6.3]

Re: [PHP] mcrypt installation problems

2003-02-05 Thread Adam Voigt
Can anyone point to information on how to install mcrypt support for PHP. I tried the PHP mcrypt pages but they are quite lacking in details. I downloaded libmcrypt and got that installed fine. I also downloaded mcrypt (do I really need it?) but that wou

[PHP] mcrypt installation problems

2003-02-05 Thread Jean-Christian Imbeault
Can anyone point to information on how to install mcrypt support for PHP. I tried the PHP mcrypt pages but they are quite lacking in details. I downloaded libmcrypt and got that installed fine. I also downloaded mcrypt (do I really need it?) but that wouldn't configure. It complains

Re: [PHP] mcrypt

2003-01-02 Thread Jason Sheets
Actually you should be able to get mcrypt working with PHP on Windows (mcrypt is not distributed with PHP because of the legal issues surrounding exporting encryption). If you visit the PHP manual page for mcrypt at http://www.php.net/manual/en/ref.mcrypt.php you will see the following under Requi

Re: [PHP] mcrypt

2003-01-02 Thread J Smith
As I've said a bunch of times, I hate plugging my own software, but you can try cryptopp-php, which should provide all the encryption you need, and it works on both UNIX and Windows. http://www.tutorbuddy.com/software/ J Alex Piaz wrote: > As far as I know, there is no mcrypt windows versio

Re: [PHP] mcrypt

2002-12-23 Thread Alex Piaz
As far as I know, there is no mcrypt windows version. You´ll have to try to compile it yourself. And don´t ask me how because I don´t know:-) A sugestion: If you can, change to linux. It´s better and it´s Free. Regards Alex At 18:33 23/12/2002 -0500, Ysrael Guzmán wrote: Hi, my server is win

[PHP] mcrypt

2002-12-23 Thread Ysrael Guzmán
Hi, my server is win 2000 server and IIS 5.0 i wnat to work to MCRYPT, but i don't know... help me please. Por favor yo estoy trabajando con windows 2000 server, y mi servidor web es un Internet Information Service, trabajo con PHP y Mysql... deseo encriptar con MCRYPT, pero no viene insta

[PHP] mcrypt 2.4.x - trouble with small data fields?

2002-11-27 Thread Steve Yates
On my current project I am saving personal info into a MySQL database for later retrieval. I have discovered that I have trouble with a few specific data entries, though the other ~20 work fine. The two I have trouble with are a char(2) and a varchar(4) field, the smallest ones in the table,

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread BigDog
; > -Original Message- > From: Nick Richardson [mailto:esoteric.web@;gte.net] > Sent: Tuesday, November 12, 2002 12:18 AM > To: [EMAIL PROTECTED] > Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32? > > > I'm trying to load it via php.ini w/ extension=php_mcrypt.dll and

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
t: Tuesday, November 12, 2002 12:18 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32? I'm trying to load it via php.ini w/ extension=php_mcrypt.dll and php_mcrypt.dll is in the extension_dir - When php_mcrypt.dll is not in the right place, it tells me it can't loa

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread Nick Richardson
o g :. [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 11, 2002 4:50 AM > To: Nick Richardson > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32? > > > You need to uncomment the dll in the php.ini file...do a search for it > and then uncomment it

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Ray Hunter
nt: Monday, November 11, 2002 4:50 AM > To: Nick Richardson > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32? > > > You need to uncomment the dll in the php.ini file...do a search for it > and then uncomment it or add it to the php.ini file... > >

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
PROTECTED] Subject: RE: [PHP] Mcrypt Under IIS 5 / Win32? You need to uncomment the dll in the php.ini file...do a search for it and then uncomment it or add it to the php.ini file... That will load it... *Note: i would add that directory to your path that contains the mcrypt dll or all dlls for p

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
bject: RE: [PHP] Mcrypt Under IIS 5 / Win32? You need to uncomment the dll in the php.ini file...do a search for it and then uncomment it or add it to the php.ini file... That will load it... *Note: i would add that directory to your path that contains the mcrypt dll or all dlls for php an

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread .: B i g D o g :.
enticon.com] > Sent: Monday, November 11, 2002 4:37 AM > To: Nick Richardson > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP] Mcrypt Under IIS 5 / Win32? > > > > is there not a dll for mcrypt? > > > On Mon, 2002-11-11 at 19:34, Nick Richardson wrote: &g

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
t... But I just can't get it to work. Everytime I try to do it I get 'call to undefined function . ' //Nick -Original Message- From: .: B i g D o g :. [mailto:bigdog@;venticon.com] Sent: Monday, November 11, 2002 4:37 AM To: Nick Richardson Cc: [EMAIL PROTECTED]; [EMAI

Re: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread .: B i g D o g :.
is there not a dll for mcrypt? On Mon, 2002-11-11 at 19:34, Nick Richardson wrote: > I asked this before, but didn't get a response. > > Anyone out there have any experience a/o know where I can find > information on getting the mcrypt functionality to work under Win32 - I > have found a port o

[PHP] Mcrypt Under IIS 5 / Win32?

2002-11-11 Thread Nick Richardson
I asked this before, but didn't get a response. Anyone out there have any experience a/o know where I can find information on getting the mcrypt functionality to work under Win32 - I have found a port of mcrypt for Win32, and also learned that you can compile it using cygwin - but I don’t know how

[PHP] Mcrypt under Win32?

2002-11-10 Thread Nick Richardson
Anyone out there know how to get the mcrypt functions running under Win32? Any help / how-to's / URLs will be greatly appreciated. - I have searched around the web and found a few things, but nothing that really gives any good information Thanks in advance for the help!!! //Nick Richardson //

[PHP] mcrypt vs. libmcrypt

2002-10-03 Thread Scott Fletcher
I saw on Google search result about PHP and mcrypt. I read the manual on http://php.net/mcrypt and it spoke about downloading libmcrypt and use the php configure option, "--with-mcrypt=" for libmcrypt-2.x.x. So, on the Google search result, one of hte posting talk about using both the libmcrypt

Re: [PHP] mcrypt

2002-08-01 Thread Danny Shepherd
Try setting the database field type to 'BLOB' Danny. - Original Message - From: "Randy Johnson" <[EMAIL PROTECTED]> To: "Danny Shepherd" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, August 01, 2002 4:51 PM Subject: Re: [P

Re: [PHP] mcrypt

2002-08-01 Thread Randy Johnson
EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, August 01, 2002 11:31 AM Subject: Re: [PHP] mcrypt > Just base64 encode the mcrypt output if the non printable chars bother you, > though I don't really see what the problem is, unless you're pushing the > outp

RE: [PHP] mcrypt

2002-08-01 Thread Darren Gamble
Good day, > i started using crypt() > > then changed to mcrypt() > > which was not any good cause of the high ascii characters > > then i read about converting the high ascii characters to hex . > > Is this the ideal way to encrypt passwords or is their > something better. The crypt() funct

Re: [PHP] mcrypt

2002-08-01 Thread Danny Shepherd
IL PROTECTED]> Sent: Thursday, August 01, 2002 4:24 PM Subject: [PHP] mcrypt > I am looking into different password encryption solutions. > > i started using crypt() > > then changed to mcrypt() > > which was not any good cause of the high ascii characters > > then i read

[PHP] mcrypt

2002-08-01 Thread Randy Johnson
I am looking into different password encryption solutions. i started using crypt() then changed to mcrypt() which was not any good cause of the high ascii characters then i read about converting the high ascii characters to hex . Is this the ideal way to encrypt passwords or is their somethin

Re: [PHP] mcrypt

2002-07-31 Thread J Smith
gt; Direct: 415-901-7343 > Fax: 415-901-1586 > http://www.yaga.com > > > > - Original Message - > From: "Tech Support" <[EMAIL PROTECTED]> > To: "Purushotham Komaravolu" <[EMAIL PROTECTED]> > Sent: Tuesday, July 30, 2002 11

Re: [PHP] mcrypt

2002-07-30 Thread Tech Support
osting.net - Original Message - From: "Purushotham Komaravolu" <[EMAIL PROTECTED]> To: "Tech Support" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, July 30, 2002 1:44 PM Subject: Re: [PHP] mcrypt > Hi, > Thanks

Re: [PHP] mcrypt

2002-07-30 Thread Purushotham Komaravolu
Yaga, Inc. - "advanced payment services" Direct: 415-901-7343 Fax: 415-901-1586 http://www.yaga.com - Original Message - From: "Tech Support" <[EMAIL PROTECTED]> To: "Purushotham Komaravolu" <[EMAIL PROTECTED]> Sent: Tuesday, July 30, 2002 11:34 AM

[PHP] mcrypt

2002-07-30 Thread Purushotham Komaravolu
Hello, I am getting some odd errors trying to get an encrypt/decrypt process to work. Looking at the manual examples and some other literature, I have tried the two approaches listed below. For each, I get a sometimes-works, sometimes fails result. The manua

Re: [PHP] mcrypt

2002-07-16 Thread Danny Shepherd
ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/ - Original Message - From: "Peter" <[EMAIL PROTECTED]> To: "php_gen" <[EMAIL PROTECTED]> Sent: Wednesday, July 17, 2002 1:16 AM Subject: [PHP] mcrypt > Howdy all.. > does any one know of another place i ca

[PHP] mcrypt

2002-07-16 Thread Peter
Howdy all.. does any one know of another place i can download a win32 ver of mcrypt other than http://mcrypt.hellug.gr/ ? as that site crashes my browser when i click any link on the page... Cheers Peter "the only dumb question is the one that wasn't asked"

[PHP] mcrypt again...

2002-07-01 Thread charlesk
Where can I get mcrypt for windows and php 4.2.1? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MCRYPT anybody anybody???

2002-07-01 Thread Jason Wong
On Monday 01 July 2002 23:09, charlesk wrote: > Does anybody know anything about mcrypt for windows??? http://homepages.tesco.net/~J.deBoynePollard/FGA/questions-with-yes-or-no-answers.html -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk Open Source Software Systems Integrators * W

[PHP] MCRYPT anybody anybody???

2002-07-01 Thread charlesk
Does anybody know anything about mcrypt for windows??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mcrypt

2002-06-29 Thread charlesk
Has anyone got a working mcrypt.dll for php 4.2.1 and Windows 2000 Server? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mcrypt Function - New to it

2002-05-30 Thread Tom Ray
Well now I have the Encryption problem figured out but when I try to decrypt the information, I'm getting this error: Warning: mcrypt module initialization failed in test.php on line 11 Here's Line 11: $text = mcrypt_decrypt (MCRYPT_TripleDES, $key, $lockdata, MCRPYT_MODE_ECB, $iv); again an

Re: [PHP] Mcrypt Function - New to it

2002-05-30 Thread Tom Rogers
Hi Here are a couple of functions that should help to get you started, iv is set to all 0's so it does not have to be passed around or stored in sessions. It is base64 encoded so it can be stored or passed to the browser. Function Code_id($id,$password){ $eid = 0; $td = mcrypt

  1   2   >