Skip to content

Instantly share code, notes, and snippets.

View Zorba11's full-sized avatar
🎯
Focusing

Alen George Zorba11

🎯
Focusing
View GitHub Profile
@alienzhou
alienzhou / mk-openssl-webassembly.sh
Created November 28, 2021 16:49
Creates OpenSSL as WASM
#!/bin/sh
OPENSSL="openssl-1.1.1d"
if [ -d ${OPENSSL} ]; then
rm -rf ${OPENSSL}
fi
if [ ! -f ${OPENSSL}.tar.gz ]; then
curl -O https://www.openssl.org/source/${OPENSSL}.tar.gz