-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added script to extract the digest and mrenclave from a signed enclave
- Loading branch information
1 parent
aa6489a
commit e9a7935
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#! /usr/bin/env bash | ||
|
||
if [[ $# -ne 1 ]]; then | ||
echo "Usage: $0 <signed_enclave>" | ||
exit 1 | ||
fi | ||
|
||
pushd $(dirname $0) > /dev/null | ||
BUILD_ROOT=$(pwd) | ||
popd > /dev/null | ||
|
||
HSM_ROOT=$(realpath $BUILD_ROOT/../../) | ||
|
||
DOCKER_IMAGE=hsm:sgx | ||
source $BUILD_ROOT/../../docker/check-image | ||
|
||
ENCLAVE_BIN=$(realpath $1 --relative-to=$HSM_ROOT) | ||
if [[ ! -f $ENCLAVE_BIN ]]; then | ||
echo "Invalid signed enclave path: $ENCLAVE_BIN" | ||
exit 1 | ||
fi | ||
|
||
DIGEST_CMD="oesign digest -e $ENCLAVE_BIN -d /tmp/enclave_digest > /dev/null && hexdump -v -e '/1 \"%02x\"' /tmp/enclave_digest" | ||
MRENCLAVE_CMD="oesign dump -e $ENCLAVE_BIN | grep mrenclave | cut -d '=' -f 2" | ||
EXTRACT_CMD="\$SGX_ENVSETUP && echo digest: \$($DIGEST_CMD) && echo mrenclave: \$($MRENCLAVE_CMD)" | ||
|
||
DOCKER_USER="$(id -u):$(id -g)" | ||
|
||
docker run -t --rm --user $DOCKER_USER -w /hsm2 -v ${HSM_ROOT}:/hsm2 ${DOCKER_IMAGE} /bin/bash -c "$EXTRACT_CMD" |