00001 #ifndef _CRYPTO_HELPERS_H__ 00002 #define _CRYPTO_HELPERS_H__ 00003 00004 #include <cstddef> 00005 00006 bool readKeyFromFile(const char* filename, char newkey[16]); 00007 00008 void getRandomByte(void *dest, size_t num); 00009 00010 00011 #endif //CRYPTO_HELPERS_H__ 00012 /* This stuff is for emacs 00013 * Local variables: 00014 * mode:c++ 00015 * c-basic-offset: 4 00016 * End: 00017 */