]> jfr.im git - irc/rqf/shadowircd.git/blame - tools/mkkeypair
Fix small bug in the VERSION/RPL_MYINFO stuff, as pointed out by init.
[irc/rqf/shadowircd.git] / tools / mkkeypair
CommitLineData
212380e3 1#!/bin/sh
2dd if=/dev/urandom of=randdata count=1 bs=2048
3openssl genrsa -rand randdata -out private.key 2048
4openssl rsa -in private.key -out public.key -pubout
5rm randdata