encrypt
encrypt(t_sourceFilet_destFile[t_password] ) =>t
Description
Encrypts a SKILL file and places the output into another file.
If a password is supplied, the same password must be given to the command used to reload the encrypted file.
Arguments
|
Destination file you want the encrypted file to be placed in. |
|
|
Optional password; you are asked for it before you can reload the encrypted file. |
Value Returned
|
When the file has been encrypted and placed in t_destFile. Signals an error if you fail to name a destination file or give the name of a file already present. |
Examples
Encrypts the triadb file into the myPlace file with option as the password. Returns t if successful.
encrypt( "triadb" "myPlace" "option")
=> t
encrypt("file.il" "file.ile") ; SKILL file
encrypt("file_sc.ils" "file_sc.ilse") ; SCHEME file
Related Topics
Return to top