// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "random.hh" #include namespace Random { void generateTrue( void * buf, unsigned size ) { if ( RAND_bytes( (unsigned char *) buf, size ) != 1 ) throw exCantGenerate(); } void generatePseudo( void * buf, unsigned size ) { if ( RAND_pseudo_bytes( (unsigned char *) buf, size ) < 0 ) throw exCantGenerate(); } }