Skip to content

Commit 0805dda

Browse files
committed
added LD_LIBRARY_PATH
Signed-off-by: Robin Dubey <[email protected]>
1 parent 6c47ec4 commit 0805dda

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

icc/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,10 +591,11 @@ nist_algs$(EXESUFX): nist_algs1$(OBJSUFX)
591591

592592
#- stand alone signing tool
593593
privkey.rsa:
594-
openssl genrsa -out privkey.rsa 2048
594+
export LD_LIBRARY_PATH=~/OpenCryptographyKitC/openssl-1.1.1/
595+
../openssl-1.1.1/apps/openssl genrsa -out privkey.rsa 2048
595596

596597
pubkey.h: privkey.rsa
597-
openssl rsa -in privkey.rsa -outform DER -RSAPublicKey_out > rsa_pub_key.der
598+
../openssl-1.1.1/apps/openssl rsa -in privkey.rsa -outform DER -RSAPublicKey_out > rsa_pub_key.der
598599
echo "/*This is an auto generated code please DO NOT modify*/" > pubkey.h
599600
perl bin2hex.pl rsa_pub_key.der temp.h
600601
cat temp.h >> pubkey.h

0 commit comments

Comments
 (0)