]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/make_gnutls_cert.bat
Update the module descriptions.
[user/henk/code/inspircd.git] / win / make_gnutls_cert.bat
1 @echo off
2
3 echo This program will generate SSL certificates for m_ssl_gnutls.so
4 echo Ensure certtool.exe is in your system path. It can be downloaded
5 echo at ftp://ftp.gnu.org/gnu/gnutls/w32/. If you do not know the answer
6 echo to one of the questions just press enter.
7 echo.
8
9 pause
10
11 certtool --generate-privkey --outfile conf/key.pem
12 certtool --generate-self-signed --load-privkey conf/key.pem --outfile conf/cert.pem
13
14 pause