]> Cypherpunks.ru repositories - govpn.git/blob - doc/egd.texi
Ability to use EGD-compatible PRNGs
[govpn.git] / doc / egd.texi
1 @node EGD
2 @section EGD
3
4 Overall security mainly depends on client side:
5 @ref{PAKE, good passphrase} and cryprographically good pseudo random
6 number generator.
7
8 Some operating systems do not have good enough quality PRNG, bad
9 @code{/dev/urandom}. You should use separate PRNG with them. GoVPN
10 communicates with them using Entropy Gathering Daemon protocol.
11
12 To switch using EGD-compatible daemons instead of @code{crypto/rand}
13 library you provide @code{-egd PATH} command line option, where
14 @code{PATH} is either host:port or path to the domain socket.
15
16 @example
17 % ./govpn-server [...] -egd /var/run/egd.sock
18 @end example