18 lines
522 B
Bash
18 lines
522 B
Bash
#!/bin/ksh
|
|
|
|
###########################################################
|
|
# Progetto: Gateway MNP
|
|
# Script: dbcKeyGen.sh
|
|
# Descrizione: Applicazione per la creazione della chiave di cifratura\decifratura
|
|
#
|
|
###########################################################
|
|
|
|
THIS_PATH=`dirname $0`
|
|
. $THIS_PATH/setEnv.sh
|
|
|
|
THIS=`basename $0 .sh`
|
|
LOG=$MNP_LOG_SCRIPT_HOME/$THIS.log
|
|
|
|
adesso=$(date)
|
|
echo '******' $adesso Eseguo dbcKeyGen.sh >> $LOG
|
|
$THIS_PATH/javaExec_unix.sh it.valueteam.securityutility.TripleDesKeyGenerator >> $LOG |