Change Masterkey
================
Set master key in 'dep_backup.c' (128 bits = 8 * 4 hex-digits) to a new value:

  #define SET_MASTER_KEY                                            \
    uk[0] = 0x0000; uk[1] = 0x0001; uk[2] = 0x0002; uk[3] = 0x0003; \
    uk[4] = 0x0004; uk[5] = 0x0005; uk[6] = 0x0006; uk[7] = 0x0007;

Set encrypted ftp-password (see "Change ftp-Password")


Change ftp-Password
===================
Set new password in 'dep_backup.c' (up to 8 characters):

  #ifdef SHOWPASSWORD
  #define ftpPassword  "mypasswd"
  #endif

Run

  make show
    idea -K 00000001000200030004000500060007
    da[0] = 0xF357; da[1] = 0xC6D6; da[2] = 0xC70B; da[3] = 0xA548;

Set code for encrypted ftp-password in 'dep_backup.c':

  #define SET_ENCRYPTED_FTP_PASSWORD                                \
    da[0] = 0xF357; da[1] = 0xC6D6; da[2] = 0xC70B; da[3] = 0xA548;

Run 
 
  make
 
to build executable 'dep_backup'.

-------------------------------------------------------------------------------
                              Command Description
-------------------------------------------------------------------------------

Used Path and Filenames
=======================
  Solaris 1.X:
    dump       = /usr/etc/dump
    restore    = /usr/etc/restore
    compress   = /usr/ucb/compress
    uncompress = /usr/ucb/uncompress

  Solaris 2.X:
    dump       = /usr/sbin/ufsdump
    restore    = /usr/sbin/ufsrestore
    compress   = /usr/bin/compress
    uncompress = /usr/bin/uncompress

dep_backup -dump dumpLevel dumpDevice fileName
==============================================
  dump ${dumpLevel}uf - ${dumpDevice} |                            \
  compress |                                                       \
  idea -eK 00000001000200030004000500060007 > ${fileName}

dep_backup -restore fileName
============================
  idea -dK 00000001000200030004000500060007 < ${fileName} |        \
  uncompress |                                                     \
  restore if -

dep_backup -c "command1" "command2" ... "commandN"
==================================================
  /usr/ucb/ftp -in roseg 1021
  user isibup mypasswd
  bin
  ${command1}
  ${command2}
  :
  ${commandN}
  EOF

dep_backup -e
=============
  idea -eK 00000001000200030004000500060007

dep_backup -d
=============
  idea -dK 00000001000200030004000500060007

idea 
====
NAME
     idea - encrypt and decrypt using IDEA
 
SYNOPSIS
     idea [ -e | -d ] [ -r ] [ -ecb | -cbcN | -cfbN | -ofbN ]
          ( -k keyString | -K keyHexString )
          [ inputFile [ ouputFile ] ]

DESCRIPTION
     IDEA (International Data Encryption Algorithm)  is  a  block
     cipher  developed  by  Dr.  Xuejia  Lai  and Prof. Dr. J. L.
     Massey at the Swiss Federal Institute of Technology.

(anonymous ftp 129.132.1.138 (isibee-gw), get pub/simpl/idea.V1.1.tar.Z)
