]> jfr.im git - solanum.git/blob - tools/mkkeypair
Pedantry: Make indentation consistent in example and reference confs.
[solanum.git] / tools / mkkeypair
1 #!/bin/sh
2 dd if=/dev/urandom of=randdata count=1 bs=2048
3 openssl genrsa -rand randdata -out private.key 2048
4 openssl rsa -in private.key -out public.key -pubout
5 rm randdata