Skip to content
This repository was archived by the owner on Jan 27, 2022. It is now read-only.

Commit 324b2c5

Browse files
committed
Gramine Integration with Avalon
1 parent daa3970 commit 324b2c5

File tree

4 files changed

+1
-132
lines changed

4 files changed

+1
-132
lines changed

0001-gramine-integration-with-avalon.patch

Lines changed: 0 additions & 127 deletions
This file was deleted.

docs/graphene-workload-tutorial/workload/graphene_sgx/build_gsc_workload.sh.template

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ if [ ! -f "$SIGN_KEY_FILE" ]; then
5252
openssl genrsa -3 -out $SIGN_KEY_FILE 3072
5353
fi
5454

55-
echo " generated the signing key \n\n"
56-
5755
# Sign image to generate final GSC image
5856
echo "Generate Signed GSC image"
5957
sudo ./gsc sign-image $IMAGE_NAME $SIGN_KEY_FILE

examples/graphene_apps/python_workloads/fibonacci/graphene_sgx/build_gsc_fibonacci_workload.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ if [ ! -f "$SIGN_KEY_FILE" ]; then
5353
openssl genrsa -3 -out $SIGN_KEY_FILE 3072
5454
fi
5555

56-
echo " generated the signing key \n\n"
57-
5856
# Sign image to generate final GSC image
5957
echo "Generate Signed GSC image"
6058
sudo ./gsc sign-image $IMAGE_NAME $SIGN_KEY_FILE

examples/graphene_apps/python_workloads/fibonacci/src/fibonacci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def execute(self, in_data_array):
5656
return result, out_msg_bytes
5757
# -------------------------------------------------------------------------
5858

59-
def _fibonacci(self,n):
59+
def _fibonacci(self, n):
6060
"""
6161
Function to calculate nth Fibonacci number
6262
Parameters :

0 commit comments

Comments
 (0)