Php Encrypt Decrypt Without Mcrypt

Posted on by
Php Encrypt Decrypt Without Mcrypt Rating: 3,8/5 4402reviews

(10 replies) I'm using php on a shared server and have no control over the configuration. It does not seem to support mcrypt. Is there any other easy way to encrypt and decrypt a string with php?

Hp Laser Jet 4100 Driver. Dean Hall I'm faced with the same problem, as it seems PHP can't find the modules once they're compiled in. I was thinking, if I can't find a way around this, if you have openssl installed, you could use openssl on the command line, pipe the output to a file, and read it from there.

Or you could even use Perl on the command line. Use 'system()', I think. It's not the best way, but it's a workaround. ----- Original Message ----- From: 'Dave Jones' To: Sent: Sunday, August 20, 2000 6.25 pm Subject. I'm using php on a shared server and have no control over the configuration. It does not seem to support mcrypt.

Php Encrypt Decrypt Without Mcrypt

Is there any other easy way to encrypt and decrypt a string with php? I want encrypt a string, pass it to another page in the URL and have that page decrypt it.Dave -------------------- To send e-mail to me replace the domain name with djdesign.com The phony 'anti.spam' domain is used to fool newsgroup e-mail address harvestor 'bots. ---------------------- -- PHP General Mailing List (To unsubscribe, e-mail: php-general-unsubscribe@lists.php.net For additional commands, e-mail: php-general-help@lists.php.net To contact the list administrators, e-mail: php-list-admin@lists.php.net. Dave Jones Nobody out there has any suggestion of how to encrypt and decrypt a string without mcrypt? I can't use md5() because I'm not comparing two things, I'm trying to pass a new string from page to page without it being readable.

It doesn't have to be extremely secure, it's not financial data, but it shouldn't be easy to decrypt by the casual user. And I don't have control over my configuration (which does not have mcrypt installed) so it has to be something I can create in php3. Hp 1200 Printer Driver For Windows 7 32 Bit here. How about a simple.

Nobody out there has any suggestion of how to encrypt and decrypt a string without mcrypt? I can't use md5() because I'm not comparing two things, I'm trying to pass a new string from page to page without it being readable. It doesn't have to be extremely secure, it's not financial data, but it shouldn't be easy to decrypt by the casual user. And I don't have control over my configuration (which does not have mcrypt installed) so it has to be something I can create in php3. How about a simple algorithm for either a single key or public/private key method?Dave Dave Jones wrote. I'm using php on a shared server and have no control over the configuration. It does not seem to support mcrypt.

Is there any other easy way to encrypt and decrypt a string with php? I want encrypt a string, pass it to another page in the URL and have that page decrypt it.Dave -------------------- To send e-mail to me replace the domain name with djdesign.com The phony 'anti.spam' domain is used to fool newsgroup e-mail address harvestor 'bots. ---------------------- -- PHP General Mailing List (To unsubscribe, e-mail: php-general-unsubscribe@lists.php.net For additional commands, e-mail: php-general-help@lists.php.net To contact the list administrators, e-mail: php-list-admin@lists.php.net-- -------------------- To send e-mail to me replace the domain name with djdesign.com The phony 'anti.spam' domain is used to fool newsgroup e-mail address harvestor 'bots. $onetimepad = OneTimePadCreate(strlen($secretkey)); $key = OneTimePadEncrypt($secretkey, $onetimepad); session_register('onetimepad');That's all fine and dandy if all you need is a one-time pad. But one-time pads are only good once -- by definition, a one-time pad must be *truly* random, the same exact length as the plaintext, and only used once. If it doesn't meet any of these qualifications, it's not a one-time pad and is *not* good for encryption.

But, if you do need a one-time pad, it's unbreakable.:-) Really! Brian Huddleston And just to reiterate Dean's point. The numbers used to generate the pad must be truly random.

Vw T5 Transporter Bedienungsanleitung Pdf Printer. Otherwise your security begins and ends with how good your random number generator is.the usual answer being, not very. So you end up being not much better off than Rot13ing it. Use a real encryption algorhytm if you are serious about it at all. Brian Huddleston Huddleston Consulting ----- Original Message ----- From: 'Dean Hall' To: 'Lewis Bergman' Cc: Sent: Thursday, August 24, 2000 3:09 at Aug 24, 2000 at 8:25 pm.

$onetimepad = OneTimePadCreate(strlen($secretkey)); $key = OneTimePadEncrypt($secretkey, $onetimepad); session_register('onetimepad');That's all fine and dandy if all you need is a one-time pad. But one-time pads are only good once -- by definition, a one-time pad must be *truly* random, the same exact length as the plaintext, and only used once. Hp 802.11 Bg Wireless Network Adapter Driver Windows 10. If it doesn't meet any of these qualifications, it's not a one-time pad and is *not* good for encryption. But, if you do need a one-time pad, it's unbreakable.:-) Really! -- PHP General Mailing List (To unsubscribe, e-mail: php-general-unsubscribe@lists.php.net For additional commands, e-mail: php-general-help@lists.php.net To contact the list administrators, e-mail: php-list-admin@lists.php.net. Dean Hall.which gets us back to our original question: How do we use encryption and cryptographic hash functions without mcrypt and mhash libraries?