OpenSSL is a library for general-purpose cryptography. OpenSSL is also an open-source command line tool that is commonly used to generate private keys, create CSRs, install your SSL/TLS certificate, and identify certificate information.
Build + Install
#!/bin/bash -xe
#For X86
export ARCH=""
export CROSS_COMPILE=""
export OPENSSL_TARGET=""
#For arm64, source toolchain and set the below config
<<ARM64
export ARCH=arm64
export CROSS_COMPILE="aarch64-linux-gnu-"
export OPENSSL_TARGET=linux-aarch64
ARM64
echo "Download OpenSSL 1.1.1g"
wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz
echo "untaring... openSSL"
tar -xf openssl-1.1.1g.tar.gz
cd openssl-1.1.1g
echo "Configuring OpenSSL"
./Configure ${OPENSSL_TARGET} shared -pg -fPIC --cross-compile-prefix=$CROSS_COMPILE --prefix=/tmp/openssl11 --openssldir=/tmp/openssl11/etc/ssl
echo "Building ..."
make -j8
echo "Installing ...."
make install_sw DESTDIR=<path to staging dir>
Successful compilation directs output into 3 directories
export LD_LIBRARY_PATH=<path till lib dir>
./bin/openssl version -a
Commands
These commands are for "secp384r1" curve. The same applies to other supported curves.
# check the version of openssl
openssl version -a
# Get a random number
openssl rand -hex 64
# Generate Private key for secp384 curve
openssl ecparam -genkey -name secp384r1 -out privatekey.pem
# Generate Certificate for a given private key
openssl req -new -sha256 -key privatekey.pem -out csr.csr -subj "/C=US/ST=FL/L=Orlando/O=Foo LLC/OU=IT/CN=www.example.com"
# Generate Public key for given private key and certificate.
openssl req -x509 -sha256 -days 365 -key privatekey.pem -in csr.csr -out publickey.pem
# Start server instance on port 8443
openssl s_server -tls1_3 -accept 8443 -cert publickey.pem -curves secp384r1 -key privatekey.pem
# Connect to the server with the client
openssl s_client -tls1_3 -curves secp384r1 -connect <server_ip>:8443
-engine <engine name> : Accelarate with specified engine
-tls1_3 : Use TLSv1.3 for communication
-quiet: less verbose
-rand <path to node > : use the specified random number from node instead of kernel entrophy
API's
Leverage custom engine
OpenSSL provides flexibility to offload operations onto custom HW. The below code leverages the engine to perform all OpenSSL operations
ENGINE_load_builtin_engines();
ENGINE *e = ENGINE_by_id("engine name");
// Make the engine's implementations the default implementations
ENGINE_init(e)
ENGINE_set_default_digests(e)
// Set default engine
ENGINE_set_default(e, ENGINE_METHOD_ALL);
// Free the engine
ENGINE_free(e);
ENGINE_cleanup();