File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -684,7 +684,7 @@ WIFI_101
684684WIFI_AVAILABLE
685685WIFI_NINA
686686WIN_REUSE_CRYPT_HANDLE
687- WOLFCRYPT_FIPS_CORE_DYNAMIC_HASH_VALUE_SUPPORT
687+ WOLFCRYPT_FIPS_CORE_DYNAMIC_HASH_VALUE
688688WOLFSENTRY_H
689689WOLFSENTRY_NO_JSON
690690WOLFSSL_32BIT_MILLI_TIME
Original file line number Diff line number Diff line change 4747
4848if [[ ! -v COREKEY ]]; then
4949 if [[ ! -v LIBWOLFSSL ]]; then
50- LIBWOLFSSL=./libwolfssl-user-build/src/.libs/libwolfssl.so
50+ LIBWOLFSSL=./libwolfssl-user-build/src/.libs/libwolfssl.so
5151 fi
5252 read -a coreKey_a < <( " ${READELF-readelf} " --symbols --wide " $LIBWOLFSSL " | grep --max-count=1 -E -e ' [[:space:]]coreKey$' ) || exit $?
5353 if [[ ${# coreKey_a[@]} != 8 || " ${coreKey_a[2]} " != " 65" ]]; then
54- echo " unexpected readelf output: \" ${coreKey_a[*]} \" (${# coreKey_a[@]} )" >&2
55- exit 1
54+ echo " unexpected readelf output: \" ${coreKey_a[*]} \" (${# coreKey_a[@]} )" >&2
55+ exit 1
5656 fi
5757 coreKey_offset=$(( 0 x${coreKey_a[1]} ))
5858 COREKEY=$( dd if=" $LIBWOLFSSL " bs=64 iflag=skip_bytes,count_bytes skip=" $coreKey_offset " count=64 status=none) || exit $?
5959 if [[ " $COREKEY " =~ ^[0-9A-Fa-f]{64}$ ]]; then
60- :
60+ :
6161 else
62- echo " unexpected value for coreKey \" ${COREKEY} \" ." >&2
63- exit 1
62+ echo " unexpected value for coreKey \" ${COREKEY} \" ." >&2
63+ exit 1
6464 fi
6565fi
6666
You can’t perform that action at this time.
0 commit comments