PDA

View Full Version : PHP Encryption


MrLister
08-11-2002, 04:23 PM
Anybody know of one that's compatible with all servers?

Admin
08-12-2002, 03:54 PM
No. But I've used ionCube's (great service, love them!) and their decoder is easy to install.

Ajay
08-18-2002, 09:07 PM
im not sure if its compatible with all servers, but when you encrypt use md5()
i.e

if (
md5($PHP_AUTH_USER) !='21232f297a57a5a743894a0e4a801fc5' ||
md5($PHP_AUTH_PW) !='f70d11f8ad83b6f913115426098d2712'
) {
// force authentication
.....
exit;
}

Admin
08-19-2002, 07:28 AM
I think MrLister means encrypting the PHP source good, not bits of data...

Dark_Wizard
08-19-2002, 08:14 AM
Originally posted by FireFly
I think MrLister means encrypting the PHP source good, not bits of data...

Correct...he needs to protect his source code for his portal.