home *** CD-ROM | disk | FTP | other *** search
- ; _
- ; _ //
- ; SafeData version 0.6 for \X/ AMIGA
- ; SafeData version 0.6 Copyright 1992 Bahman Moallem
- ; All Rights Reserved Worldwide
- ;
- ; Sample configuration file for SafeData.
- ; You can, and are advised to pack this file.
- ;
- ; Available switches:
- ; ProcessIndicator Yes/No (Default is Yes)
- ; ShowFileName Yes/No (Default is Yes)
- ; ReAskPassword Yes/No (Default is No)
- ; OverWrite Yes/No (Default is Yes)
- ;
- ; Available commands:
- ; Encrypter "4 characters word" (Default is IDEA)
- ;
- ; Execute "CMD" (AmigaDOS executable file/script to execute)
- ; Echo "String" (String to display)
- ;
- ; Encrypt FROM TO
- ; Encrypt encrypts the file specified with the FROM argument to the file
- ; specified by the TO argument.
- ; Code, Update and Pack are aliases for the Encrypt command.
- ;
- ; Decrypt FROM TO
- ; Decrypt decrypts the file specified with the FROM argument to the file
- ; specified by the TO argument.
- ; DeCode, Restore and Unpack are aliases for the Decrypt command.
- ;
-
- ProcessIndicator No
- ShowFileName No
- OverWrite Yes
-
- Echo Creating directory RAM:TEST1
- Execute Makedir RAM:TEST1
-
- ; One linefeed
- Echo
-
- Echo Encrypting S:Startup-sequence to RAM:TEST1/File1.encrypted
- Encrypt S:Startup-sequence RAM:TEST1/File1.encrypted
-
- ; One linefeed
- Echo
-
- ; Turn on the ProcessIndicator
- ProcessIndicator Yes
- Echo Decrypting RAM:TEST1/File1.encrypted to RAM:File1.decrypted
- Decrypt RAM:TEST1/File1.encrypted RAM:File1.decrypted
-
- ; One linefeed
- Echo
-
- Decrypt RAM:TEST1/File1.encrypted RAM:File1.decrypted
-
- ; Now we turn off the OverWrite flag.
- ; OverWrite No
- ; The following command will fail because RAM:File1.decrypted already exists
- ; Decrypt RAM:TEST1/File1.encrypted RAM:File1.decrypted
-