/* GoVPN -- simple secure free software virtual private network daemon Copyright (C) 2014-2020 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ package govpn import ( "crypto/rand" "io" "net" ) var ( Rand = rand.Reader ) type EGDRand string // Read n bytes from EGD, blocking mode. func (egdPath EGDRand) Read(b []byte) (int, error) { conn, err := net.Dial("unix", string(egdPath)) if err != nil { return 0, err } defer conn.Close() conn.Write([]byte{0x02, byte(len(b))}) return io.ReadFull(conn, b) } func EGDInit(path string) { Rand = EGDRand(path) }