Aastra Telecom 57I C53I IP Phone User Manual


 
Encryption and the IP Phone
7-4 41-001160-00, Rev 01 Release 2.0
IP Phone Administrator Guide
Encryption and the IP Phone
Examples
The following examples illustrate the use of the anacrypt.exe file.
Example 1
Encrypt aastra.cfg into aastra.tuz using password 1234abcd:
C:\> anacrypt aastra.cfg -p 1234abcd
Example 2
Decrypt aastra.tuz into aastra.cfg prompting user for password:
C:\> anacrypt aastra.tuz
Example 3
Decrypt mac.tuz using password 1234abcd, display plaintext on console:
C:\> anacrypt aastra.tuz -o CON: -p 1234abcd
Example 4
Encrypt a site-specific keyfile prompting user for password and write the
encrypted file directly into the TFTP server root directory:
C:\> anacrypt security.cfg -o d:\tftp\root
Example 5
Encrypt all config files in C:\data using password 1234abcd and write the
encrypted files directly into the TFTP server root directory:
C:\> FOR %a IN (C:\data\*.cfg) DO "anacrypt %a -o
d:\tftp\root -p 1234abcd"
Example 6
Decrypt all config files in the TFTP root directory using password 1234abcd and
write the resulting plaintext into the Windows temporary directory:
C:\> FOR %a IN (d:\tftp\root\*.tuz) DO "anacrypt %a -o
%TEMP% -p 1234abcd"