Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

encrypt

encrypt( 
t_sourceFile 
t_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

t_sourceFile

Name of the SKILL file you are encrypting.

t_destFile

Destination file you want the encrypted file to be placed in.

t_password

Optional password; you are asked for it before you can reload the encrypted file.

Value Returned

t

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

compress

load


Return to top
 ⠀
X