mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
6 lines
173 B
Bash
Executable file
6 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
|
|
openssl genrsa -out ca.key 2048 && \
|
|
printf "\\n\\n\\n\\n\\n\\n\\n" | \
|
|
openssl req -config tmp.cnf -x509 -new -nodes -key ca.key -sha256 -days 1024 -out ca.pem
|
|
|