Skip to content

Commit

Permalink
Add default 443 port to verify_quote.sh (#5628)
Browse files Browse the repository at this point in the history
(cherry picked from commit 51a1089)
  • Loading branch information
jumaffre committed Sep 6, 2023
1 parent cbe709d commit dd552a2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions python/utils/verify_quote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ set -e
quote_file_name="quote.bin"
endorsements_file_name="endorsements.bin"
open_enclave_path=${OPEN_ENCLAVE_PATH:-"/opt/openenclave"}
default_port=443

function usage()
{
Expand All @@ -30,6 +31,11 @@ fi
node_address=$1
shift

# Add default port number if not included (required by openssl s_client)
if ! [[ $node_address =~ .*:[0-9]+$ ]]; then
node_address="${node_address}:${default_port}"
fi

while [ "$1" != "" ]; do
case $1 in
-h|-\?|--help)
Expand Down

0 comments on commit dd552a2

Please sign in to comment.