let queue = DispatchQueue(label: "com.lozzoc")
var backgroundTask = DispatchWorkItem {
var data = try? Data() ?? Data()
}
var updateUITask = DispatchWorkItem {
self.tableView.reloadData()
}
backgroundTask.notify(queue: DispatchQueue.main,
execute: updateUITask)
queue.async(execute: backgroundTask)
#!/bin/bash -p
###############################################################################
# Name : decrypt.sh
#
###############################################################################
###############################################################################
#
# Copyright (C) S.W.I.F.T. sc. 2020. All rights reserved.
#
#
# This software and its associated documentation contain
# proprietary, confidential and trade secret information of
# S.W.I.F.T. sc. and except as provided by written agreement
# with S.W.I.F.T. sc.
# a) no part may be disclosed, distributed, reproduced,
# transmitted, transcribed, stored in a retrieval system,
# adapted or translated in any form or by any means
# electronic, mechanical, magnetic, optical, chemical,
# manual or otherwise, and
# b) the recipient is not entitled to discover through reverse
# engineering or reverse compiling or other such techniques
# or processes the trade secrets contained in the software
# code or to use any such trade secrets contained therein or
# in the documentation.
#
###############################################################################
#
#####################
# Main
#####################
#
echo "Decrypting Microgateway properties..."
MGW_PATH=`pwd`
MGW_PATH="$MGW_PATH/.."
echo $MGW_PATH
commandline1="java -cp"
commandline2="$MGW_PATH/lib/internal/file-encryptor-decryptor-1.0.3.jar"
commandline3="com.swift.encoder.FileDecryptor"
commandline4="$MGW_PATH/config/config-swift-mgw.enc"
commandline5="$MGW_PATH/config/config-swift-mgw-secret.ks"
commandline6="config-swift-mgw.yaml"
if [ ! -f "$commandline2" ]; then
echo 'EncryptorDecryptor jar file is missing'
exit 1
fi
if [ ! -f "$commandline4" ]; then
echo 'config-swift-mgw.enc file is missing'
exit 1
fi
if [[ ! -f "$commandline5" ]]; then
echo 'config-swift-mgw-secret.ks is missing'
exit 1
fi
commandLine="$commandline1 $commandline2 $commandline3 $commandline4 $commandline5 $commandline6"
$commandLine
echo "commandline = $commandLine"