back to Table of Contents


EncryptFile (function)

This will encrypt a whole file using the given password. This encryption is reversible, use the DecryptFile() function to decrypt a file encrypted with this function. Note that no check is performed, whether the given file is already encrypted, hence it's possible to enrypt a file multiple times.


SYNTAX:

error% = EncryptFile% (file$, pass$)

INPUTS:

file$ (STRING)

pass$ (STRING)


RESULT:

error% (INTEGER)


back to Table of Contents