Below are the simple steps to create OpenSSL keypair and certificate: Code: openssl genpkey -algorithm RSA -out private.key -pkeyopt rsa_keygen_bits:4096 openssl req -new -key private.key -out request.csr openssl x509 -req -days 7300 -in request.csr -signkey private.key -out certificate.crt
Question: Has anybody ported/compiled OpenSSL v3-x to/as arm32 including openssl.exe? I can only find v1-1-1 Beta4 and v0-9-8x without openssl.exe.