WvStreams
wvcrypto.cc
1 /*
2  * Worldvisions Tunnel Vision Software:
3  * Copyright (C) 1997-2002 Net Integration Technologies, Inc.
4  *
5  * Miscellaneous cryptography primitives.
6  */
7 #include "wvcrypto.h"
8 
9 /***** WvRandomStream *****/
10 
11 WvRandomStream::WvRandomStream() :
12  WvFile("/dev/urandom", O_RDONLY)
13 {
14 }
WvFile
WvFile implements a stream connected to a file or Unix device.
Definition: wvfile.h:28