Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
Signed-off-by: John Bampton <[email protected]>
  • Loading branch information
jbampton committed Dec 26, 2022
1 parent 90d924a commit 516b9a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions BuildDockerImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ elif [[ $ARCH == "s390x" ]]; then
# echo "Determined s390x Architecture"
architecture="s390x"
ARCH="s390x"
# Ony on s390x arch is a situation where we might be running in a zOS Container extensions Docker host.
# Only on s390x arch is a situation where we might be running in a zOS Container extensions Docker host.
# z/OS Container Extensions platform CURL implementation does not work as expected. If zCX platform detected, add flag to adjust.
zPlatform= docker system info | grep platform
echo $zPlatform
Expand All @@ -166,7 +166,7 @@ elif [[ $ARCH == "s390x" ]]; then
fi
else
echo " "
echo " FATAL: Aborting. $ARCH is not a suppported platform for building the FHE Toolkit."
echo " FATAL: Aborting. $ARCH is not a supported platform for building the FHE Toolkit."
echo " "
exit -1
fi
Expand Down Expand Up @@ -340,15 +340,15 @@ fi


#
# Build FHE Tookit Docker image
# Build FHE Toolkit Docker image
#
cd $BASEDIR
if ! docker build -f ./Dockerfile.$build-$ARCH.Toolkit -t $FHEKit_tag --build-arg HElib_tag=$HElib_tag . $flags
then
echo " "
echo " FATAL: Failure building Toolkit container. Please check that you have a working Docker installation"
echo " in your system and the necessary user privileges to run docker commands, and that the HElib base "
echo " container built correctly. This check can be done by issueing the command `docker images`"
echo " container built correctly. This check can be done by issuing the command `docker images`"
echo " "
exit -11
else
Expand Down
4 changes: 2 additions & 2 deletions PersistData.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ elif [[ $ARCH == "s390x" ]]; then
architecture="s390x"
else
echo " "
echo " FATAL: Aborting. $ARCH is not a suppported platform for hosting or building the FHE Toolkit."
echo " FATAL: Aborting. $ARCH is not a supported platform for hosting or building the FHE Toolkit."
echo " "
exit -1
fi
Expand Down Expand Up @@ -192,7 +192,7 @@ then
fi
else
echo " "
echo " FATAL: Aborting. $ARCH is not a suppported platform for hosting or building the FHE Toolkit."
echo " FATAL: Aborting. $ARCH is not a supported platform for hosting or building the FHE Toolkit."
echo " "
exit -7
fi
Expand Down
2 changes: 1 addition & 1 deletion README_TOOLKIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The IBM Fully Homomorphic Encryption (FHE) Toolkit for Linux is packaged as [Doc

This repository contains all the scripts required to install and run the pre-packaged toolkits as a docker container. The toolkits comprise the [IBM Homomorphic Encryption Library - HElib][3], an [Integrated Development Environment (IDE)][4], and the corresponding workspace containing the ready-to-run example code in a variety of supported toolkit editions. The editions supported are based on [Centos][5], [Fedora][6], or [Ubuntu][7], or [Alpine][8]. Each toolkit edition provides access to the built-in IDE via a web browser on your host. For the more adventurous users, instructions to build and package the toolkit locally are also provided.

If you are instead looking for the IBM Fully Homomorphic Encryption Tookit for macOS/iOS that provide a native toolkit for Apple developers, it can be found <a href="https://github.com/IBM/fhe-toolkit-macos" target="_blank">here</a>.
If you are instead looking for the IBM Fully Homomorphic Encryption Toolkit for macOS/iOS that provide a native toolkit for Apple developers, it can be found <a href="https://github.com/IBM/fhe-toolkit-macos" target="_blank">here</a>.

[![Fully Homomorphic Encryption](http://img.youtube.com/vi/5Mhbaeuv5fk/0.jpg)](http://www.youtube.com/watch?v=5Mhbaeuv5fk "Intro to FHE")

Expand Down
2 changes: 1 addition & 1 deletion RunToolkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ if [ ! "${CID}" ]; then

cmd="docker run -d --name $FHEkit_container_name $DOCKER_PERSISTENT_VOLUME_ARGS -p $PORT:8443 $FHEkit_image_name"

echo "INFO: Launching FHE tookit: "
echo "INFO: Launching FHE toolkit: "
echo ""
echo ""
echo " $cmd"
Expand Down

0 comments on commit 516b9a8

Please sign in to comment.