]> jfr.im git - irc/rqf/shadowircd.git/blob - tools/mkkeypair
Add operspy /topic.
[irc/rqf/shadowircd.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