mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
6 lines
173 B
Text
6 lines
173 B
Text
|
#!/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
|