There is a nifty feature in PHP that allows the developer to encrypt any .php file, yet the file is still executed by the server as if it were not encrypted.
This feature is very good for scripts that have sensitive routines. For example; I have a script that encrypts and decrypts a users password so that the literal password is not saved to the database.
I would like to encrypt this script (which is an ASP file, obviously) while keeping it operational on the server (IIS 6).
Is there a way to do this ?
This feature is very good for scripts that have sensitive routines. For example; I have a script that encrypts and decrypts a users password so that the literal password is not saved to the database.
I would like to encrypt this script (which is an ASP file, obviously) while keeping it operational on the server (IIS 6).
Is there a way to do this ?