mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
212380e3f4
+ branches/release-2.1 -> 2.2 base + 3.0 -> branches/cxxconversion + backport some immediate 3.0 functionality for 2.2 + other stuff
5 lines
173 B
Bash
Executable file
5 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
dd if=/dev/urandom of=randdata count=1 bs=2048
|
|
openssl genrsa -rand randdata -out private.key 2048
|
|
openssl rsa -in private.key -out public.key -pubout
|
|
rm randdata
|