37     void begin(
const char *tag, 
int eepromAddress);
 
   41     void rand(uint8_t *data, 
size_t len);
 
   44     void stir(
const uint8_t *data, 
size_t len, 
unsigned int credit = 0);
 
   59     uint16_t credits : 15;
 
   60     uint16_t firstSave : 1;
 
   62     unsigned long timeout;
 
void save()
Saves the random seed to EEPROM. 
void rand(uint8_t *data, size_t len)
Generates random bytes into a caller-supplied buffer. 
void begin(const char *tag, int eepromAddress)
Initializes the random number generator. 
Abstract base class for random noise sources. 
~RNGClass()
Destroys this random number generator instance. 
RNGClass()
Constructs a new random number generator instance. 
void destroy()
Destroys the data in the random number pool and the saved seed in EEPROM. 
bool available(size_t len) const 
Determine if there is sufficient entropy available for a specific request size. 
void loop()
Run periodic housekeeping tasks on the random number generator. 
Pseudo random number generator suitable for cryptography. 
static const int SEED_SIZE
Size of a saved random number seed in EEPROM space. 
void stir(const uint8_t *data, size_t len, unsigned int credit=0)
Stirs additional entropy data into the random pool. 
void setAutoSaveTime(uint16_t minutes)
Sets the amount of time between automatic seed saves.