back to Table of Contents


EncryptPassword$ (function)

Will return the encrypted string of the given password. This is a one-way encryption of a given user password (eg. for .htaccess based Web-Site protection). This encryption is non-reversible, hence you can't get back the original password from the encrypted one.


SYNTAX:

epass$ = EncryptPassword$ (pass$, salt$)

INPUTS:

pass$ (STRING)

salt$ (STRING)


RESULT:

epass$ (STRING)


back to Table of Contents