belle

An HTTP / Websocket library in C++17 using Boost.Beast and Boost.ASIO.


belle

/

example

/

cert

/

cert.sh

1 2 3 4 5
#!/usr/bin/env bash
set -e

printf "Generating New Certificate\n"
openssl req -new -x509 -sha256 -out cert.pem -keyout key.pem -days 365 -subj /CN=127.0.0.1 -passout pass:test
Back to Top